From ced716d0790b62a77fc3a4d3c2a198675fc70d26 Mon Sep 17 00:00:00 2001 From: WindowBird <13870814+windows-bird@user.noreply.gitee.com> Date: Tue, 11 Nov 2025 18:12:37 +0800 Subject: [PATCH] =?UTF-8?q?=E6=84=8F=E5=90=91=E6=94=B9=E5=8F=98=E9=AB=98?= =?UTF-8?q?=E6=84=8F=E5=90=91?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pages/customer/add/index.vue | 2 +- pages/customer/detail/index.vue | 8 ++++---- pages/customer/follow/add/index.vue | 2 +- utils/request/index.js | 2 +- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/pages/customer/add/index.vue b/pages/customer/add/index.vue index f60e7dc..b8f5a2d 100644 --- a/pages/customer/add/index.vue +++ b/pages/customer/add/index.vue @@ -230,7 +230,7 @@ onMounted(async () => { } // 客户状态(组件使用的是 value) - const defaultStatusLabel = '意向'; + const defaultStatusLabel = '高意向'; if (!formData.value.customerStatus) { const status = customerStatusOptions.value.find(opt => opt.label === defaultStatusLabel); if (status) { diff --git a/pages/customer/detail/index.vue b/pages/customer/detail/index.vue index 89ae501..65976c5 100644 --- a/pages/customer/detail/index.vue +++ b/pages/customer/detail/index.vue @@ -441,10 +441,10 @@ onShow(() => { .summary-row { display: flex; margin-bottom: 12px; - - &:last-child { - margin-bottom: 0; - } + + + + } .summary-item { diff --git a/pages/customer/follow/add/index.vue b/pages/customer/follow/add/index.vue index 829ed11..9b0ae5c 100644 --- a/pages/customer/follow/add/index.vue +++ b/pages/customer/follow/add/index.vue @@ -335,7 +335,7 @@ const loadDictData = async () => { statusOptions.value = statusRes|| []; // 默认客户状态:意向(按 dictLabel 匹配,写入 dictValue) if (!formData.value.customerStatus) { - const statusDefault = statusOptions.value.find(item => item.dictLabel === '意向'); + const statusDefault = statusOptions.value.find(item => item.dictLabel === '高意向'); if (statusDefault) { formData.value.customerStatus = statusDefault.dictValue; } diff --git a/utils/request/index.js b/utils/request/index.js index 1a9501b..a397cd6 100644 --- a/utils/request/index.js +++ b/utils/request/index.js @@ -11,7 +11,7 @@ export const Request = () => { uni.$uv.http.setConfig((config) => { /* config 为默认全局配置*/ config.baseURL = 'http://192.168.1.5:4001'; /* 根域名 */ - // config.baseURL = 'https://pm.ccttiot.com/prod-api'; /* 根域名 */ + config.baseURL = 'https://pm.ccttiot.com/prod-api'; /* 根域名 */ return config })