提交 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(() => {
const ref = this.$refs[typeName];
if (!ref) return;
}else{ const nodes = ref.getCheckedNodes();
return if (nodes && nodes.length > 0) {
} const node = nodes[0];
let areaLabelList = this.$refs[typeName].getCheckedNodes()[0].pathLabels;
let areaLastName = 0; // 兼容不同版本的节点数据结构
if (areaLabelList.length > 0) { const labels = node.pathLabels ||
areaLastName = areaLabelList.length - 1 (node.pathNodes ? node.pathNodes.map(n => n.label) : []);
// 产地
if (typeName === "producing_area") { if (labels.length > 0) {
this.goodsAfterSaleForm.producing_area = areaLabelList[areaLastName] const lastName = labels[labels.length - 1];
} const field = typeName
// 发货地
if (typeName === "deliver_area") { this.goodsAfterSaleForm[field] = lastName;
this.goodsAfterSaleForm.deliver_area = areaLabelList[areaLastName]
} }
} }
}, });
},
diupfont(){ diupfont(){
this.$forceUpdate() this.$forceUpdate()
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论