意向改变高意向

This commit is contained in:
WindowBird 2025-11-11 18:12:37 +08:00
parent e4944e7502
commit ced716d079
4 changed files with 7 additions and 7 deletions

View File

@ -230,7 +230,7 @@ onMounted(async () => {
} }
// 使 value // 使 value
const defaultStatusLabel = '意向'; const defaultStatusLabel = '意向';
if (!formData.value.customerStatus) { if (!formData.value.customerStatus) {
const status = customerStatusOptions.value.find(opt => opt.label === defaultStatusLabel); const status = customerStatusOptions.value.find(opt => opt.label === defaultStatusLabel);
if (status) { if (status) {

View File

@ -442,9 +442,9 @@ onShow(() => {
display: flex; display: flex;
margin-bottom: 12px; margin-bottom: 12px;
&:last-child {
margin-bottom: 0;
}
} }
.summary-item { .summary-item {

View File

@ -335,7 +335,7 @@ const loadDictData = async () => {
statusOptions.value = statusRes|| []; statusOptions.value = statusRes|| [];
// dictLabel dictValue // dictLabel dictValue
if (!formData.value.customerStatus) { if (!formData.value.customerStatus) {
const statusDefault = statusOptions.value.find(item => item.dictLabel === '意向'); const statusDefault = statusOptions.value.find(item => item.dictLabel === '意向');
if (statusDefault) { if (statusDefault) {
formData.value.customerStatus = statusDefault.dictValue; formData.value.customerStatus = statusDefault.dictValue;
} }

View File

@ -11,7 +11,7 @@ export const Request = () => {
uni.$uv.http.setConfig((config) => { uni.$uv.http.setConfig((config) => {
/* config 为默认全局配置*/ /* config 为默认全局配置*/
config.baseURL = 'http://192.168.1.5:4001'; /* 根域名 */ 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 return config
}) })