This commit is contained in:
zmj 2023-11-17 17:49:16 +08:00
parent 5c38208f01
commit 4442cd01b3
2 changed files with 10 additions and 10 deletions

View File

@ -1,8 +1,8 @@
NODE_ENV = 'development'
# VITE_APP_BASE_URL = 'http://192.168.1.20:8000'
VITE_APP_BASE_URL = 'http://192.168.1.16:8000'
VITE_APP_BASE_URL = 'https://ceshi-worker-task.lihaink.cn'
# VITE_APP_BASE_URL = 'https://ceshi-worker-task.lihaink.cn'
# VITE_APP_BASE_URL = 'https://preview-worker-task.lihaink.cn'

View File

@ -97,7 +97,7 @@
@close="showEdit = false"
/>
<audit-town-market-popup
v-else-if="showEdit && openType == 10"
v-else-if="showEdit "
ref="auditTownMarketRef"
:dict-data="dictData"
@success="getLists"
@ -173,16 +173,16 @@
//
const handleEdit = async (data: any, type = "edit") => {
console.log(data.type)
openType.value = data.type;
showEdit.value = true;
await nextTick();
if (showAuditOther.value) {
auditOtherRef.value?.open(type);
auditOtherRef.value?.setFormData(data);
} else if (data.type == 10) {
auditTownMarketRef.value?.open(type);
auditTownMarketRef.value?.setFormData(data);
}
auditTownMarketRef.value?.open(type);
auditTownMarketRef.value?.setFormData(data);
};
//