修改分发

master
doublekou 1 year ago
commit e16ceac219

@ -98,11 +98,12 @@ const columns: ProColumns[] = [
},
{
title: '联系方式',
width: 100,
dataIndex: 'customNid'
},
{
title: '分发门店',
dataIndex: 'storeName'
title: '备注',
dataIndex: 'remark'
},
{
title: '分发状态',

@ -39,6 +39,17 @@
</a-form-item>
</a-col>
</a-row>
<a-row justify="start">
<a-col :span="24">
<a-form-item
label="备注"
:label-col="{ sm: { span: 24 }, md: { span: 4 } }"
:wrapper-col="{ sm: { span: 24 }, md: { span: 20 } }"
>
<a-input v-model:value="formModel.remark" readonly />
</a-form-item>
</a-col>
</a-row>
<template v-for="item in formModel.customStoreVOList" :key="item.storeId">
<a-row justify="start">
<a-col xs="24" :sm="24" :md="12">
@ -113,6 +124,7 @@ interface SysUserPageVO {
customNid: string
comprehensiveAddress?: string
enrollStatus?: number
remark?: string
customStoreVOList: ReservationShop[]
}
@ -121,6 +133,7 @@ const formModel = reactive<SysUserPageVO>({
customName: '',
customNid: '',
comprehensiveAddress: '',
remark: '',
customStoreVOList: [],
enrollStatus: undefined
})

Loading…
Cancel
Save