This commit is contained in:
lixg
2022-11-30 18:53:54 +08:00
parent ec3c3207e8
commit e824b186cb
8 changed files with 85 additions and 56 deletions

View File

@@ -1654,7 +1654,9 @@ export default {
console.log("获取字典成功", res);
if (res.status === 200) {
if (param === "pathmapPic") {
state.imgData = res.data.data.rows;
if (res.data.data.rows.length > 0) {
state.imgData = [res.data.data.rows[0]];
}
}
}
})