From 13d1b3a084a5ab51c838b31ffe28d9fbf4b4bc08 Mon Sep 17 00:00:00 2001 From: Wanwan <913752709@qq.com> Date: Wed, 15 Nov 2023 21:55:44 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20CRM=20=E5=AE=A2=E6=88=B7=E9=99=90?= =?UTF-8?q?=E5=88=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit (cherry picked from commit 22206b25e1357e6f69a4d027d130544affcc3b04) --- .../crm/customerLimitConfig/CustomerLimitConfDetails.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/views/crm/customerLimitConfig/CustomerLimitConfDetails.vue b/src/views/crm/customerLimitConfig/CustomerLimitConfDetails.vue index dd31961e..01b7fbbb 100644 --- a/src/views/crm/customerLimitConfig/CustomerLimitConfDetails.vue +++ b/src/views/crm/customerLimitConfig/CustomerLimitConfDetails.vue @@ -89,6 +89,8 @@ defineOptions({ name: 'CustomerLimitConfDetails' }) const message = useMessage() // 消息弹窗 const { t } = useI18n() // 国际化 +const { confType } = defineProps<{ confType: LimitConfType }>() + const loading = ref(true) // 列表的加载中 const total = ref(0) // 列表的总页数 const list = ref([]) // 列表的数据 @@ -131,8 +133,6 @@ const handleDelete = async (id: number) => { } catch {} } -const { confType } = defineProps<{ confType: LimitConfType }>() - /** 搜索按钮操作 */ const handleQuery = () => { queryParams.pageNo = 1