提交 5ef8fedf authored 作者: 王天霸's avatar 王天霸

1

上级 fe60033d
...@@ -433,25 +433,28 @@ ...@@ -433,25 +433,28 @@
}, },
// 产地查处id对应的中文地址 // 产地查处id对应的中文地址
matchIdName(typeName) { matchIdName(typeName) {
if(this.$refs[typeName].getCheckedNodes()[0]){ // 使用nextTick确保DOM更新完成
this.$nextTick(() => {
}else{ const ref = this.$refs[typeName];
return if (!ref) return;
}
let areaLabelList = this.$refs[typeName].getCheckedNodes()[0].pathLabels; const nodes = ref.getCheckedNodes();
let areaLastName = 0; if (nodes && nodes.length > 0) {
if (areaLabelList.length > 0) { const node = nodes[0];
areaLastName = areaLabelList.length - 1
// 产地 // 兼容不同版本的节点数据结构
if (typeName === "producing_area") { const labels = node.pathLabels ||
this.goodsAfterSaleForm.producing_area = areaLabelList[areaLastName] (node.pathNodes ? node.pathNodes.map(n => n.label) : []);
}
// 发货地 if (labels.length > 0) {
if (typeName === "deliver_area") { const lastName = labels[labels.length - 1];
this.goodsAfterSaleForm.deliver_area = areaLabelList[areaLastName] const field = typeName
}
} this.goodsAfterSaleForm[field] = lastName;
}, }
}
});
},
diupfont(){ diupfont(){
this.$forceUpdate() this.$forceUpdate()
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论