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

1

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