From bf6b7af0fb6c230eb15dd09ceda3a04abf958141 Mon Sep 17 00:00:00 2001
From: cloudroam <cloudroam>
Date: 星期四, 09 一月 2025 18:36:22 +0800
Subject: [PATCH] add:发货
---
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