This commit is contained in:
LiJianZhao 2025-05-22 11:18:23 +08:00
parent 9c273c9746
commit 6b41ac6173
2 changed files with 9 additions and 0 deletions

View File

@ -219,6 +219,10 @@ const hilistInfo = ref<any>({})
const getHilistInfo = (item: any) => {
if (item.hilistCode) {
post("social/directory/getByCode", {code: item.hilistCode}).then((res: any) => {
if (!res){
hilistInfo.value = {}
return
}
hilistInfo.value = res
})
}

View File

@ -155,9 +155,14 @@ const getTotalPrice = () => {
const focus = (e: any) => {
emit('focus', e)
}
const popoverRef = ref<any>(null);
const itemInfo = ref<any>({});
const show = (item: any) => {
post('social/directory/getItemByCode', {code: item.itemSocialCode}).then((res: any) => {
if (!res){
itemInfo.value = {}
return
}
itemInfo.value = res
})
}