52699 清单条目导入:适用车型前端没显示数据

This commit is contained in:
宋伟佳
2022-05-10 11:08:50 +08:00
parent 3a1e8a6a76
commit f890a5dfdb
@@ -1103,6 +1103,7 @@ export default {
}
}
// 适用车型转换
console.log(item.sycx);
if (item.sycx !== null) {
let k = (item.sycx || "").split(",");
for (let i in this.energyKindOptions) {
@@ -1110,7 +1111,7 @@ export default {
if (this.energyKindOptions[i].value === k[m]) {
k[m] = this.energyKindOptions[i].label;
}
item.sycx = k.join(",");
item.typeApplicable = k.join(",");
}
}
}