master
飘泊客 1 year ago
parent 348f880ec2
commit a9bb3c3d88

@ -412,7 +412,6 @@ onMounted(() => {
// //
// provincesAndCitiesAndAutonomousOptions.value = provincesAndCitiesAndAutonomousRegions // provincesAndCitiesAndAutonomousOptions.value = provincesAndCitiesAndAutonomousRegions
provincesAndCitiesAndAutonomousOptions.value = window.globalProvincesAndCitiesAndAutonomousRegions provincesAndCitiesAndAutonomousOptions.value = window.globalProvincesAndCitiesAndAutonomousRegions
console.log('provincesAndCitiesAndAutonomousOptions==', provincesAndCitiesAndAutonomousOptions.value)
}) })
/// ///

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

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

Loading…
Cancel
Save