意向改变高意向

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
const defaultStatusLabel = '意向';
const defaultStatusLabel = '意向';
if (!formData.value.customerStatus) {
const status = customerStatusOptions.value.find(opt => opt.label === defaultStatusLabel);
if (status) {

View File

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

View File

@ -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;
}

View File

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