From 04be125365bfd254166072f75da87e406f633ba3 Mon Sep 17 00:00:00 2001 From: cloudroam <cloudroam> Date: 星期四, 09 一月 2025 18:36:56 +0800 Subject: [PATCH] Merge branch 'master' of http://47.96.225.205:8888/r/operation_pc-v2 --- pages/regular/config-customer.vue | 19 ++++++++++++++++++- 1 files changed, 18 insertions(+), 1 deletions(-) diff --git a/pages/regular/config-customer.vue b/pages/regular/config-customer.vue index 7bba8e4..d982470 100644 --- a/pages/regular/config-customer.vue +++ b/pages/regular/config-customer.vue @@ -13,6 +13,7 @@ deleteUrl: 'flower/api/configCustomer/delete', columns: [ {label: '序号', type: 'index'}, + {label: '类型', prop: 'typeStr'}, {label: '名称', prop: 'name'}, {label: '描述', prop: 'description'}, {label: '图标内容', prop: 'iconContent'}, @@ -28,12 +29,14 @@ ) : null, }, {label: '微信号', prop: 'weixin'}, + {label: '联系方式', prop: 'contact'}, ], searchForm: [ { type: 'row', - items: [{label: '等级名称:', id: 'name', type: 'input'}], + items: [{label: '名称:', id: 'name', type: 'input'}, + {label: '类型:', id: 'type', type: 'input'}], }, ], form: [ @@ -79,6 +82,20 @@ type: 'input', rules: {required: true, message: '请输入客服关联微信号'}, }, + { + label: '类型', id: 'type', + type: 'bus-select-dict', + el: { + code: 'CONFIG_CUSTOMER_CONTACT', + style: 'width:100%', + }, + }, + { + label: '联系方式:', + id: 'contact', + type: 'input', + rules: {required: false, message: '请输入联系方式'}, + }, ], }, } -- Gitblit v1.9.3