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 })