This commit is contained in:
zk
2023-12-21 14:07:18 +08:00
parent 9230f659c1
commit 5a33aa1df4
11 changed files with 54 additions and 19 deletions
@@ -83,7 +83,7 @@
async function getMapList() {
try {
const { code, result } = await mapListApi({});
const { code, result } = await mapListApi({ orgCode: props.orgCode });
if (code == 200 && result.length > 0) {
const newArr = result.map((item) => ({ ...item, type: '6' }));
mapList.value = newArr;
@@ -101,7 +101,7 @@
},
},
(val) => {
getFooterTable(val.orgCode);
getFooterTable(val.orgCode?.substring(0, 6));
setIsShow(true);
}
);