Commit cbda43be by lp784568205

修改节点点击方法

parent 295f0f20
......@@ -998,19 +998,8 @@ export default {
axios.get(`JsonData/CODE_AJXZ.json`).then((response) => {
if (response.success === true) {
this.laData = response.data.rows.filter((val) => {
if (val.id.indexOf(this.ajzlb, 0) == 0) {
return val;
}
return val.parentId == `${this.ajzlb}0000`;
});
// response.data.rows.map((item) => {
// this.laData.forEach((good) => {
// if (good.id == item.parentId) {
// this.laData.push(item);
// }
// });
// });
console.log(this.laData);
function compare(id) {
return function (a, b) {
var value1 = a[id];
......@@ -1205,7 +1194,6 @@ export default {
array[1];
},
shrHighlight(val) {
debugger
var array = this.jyaq.split(val);
this.jyaq =
array[0] +
......@@ -1443,18 +1431,8 @@ export default {
axios.get(`JsonData/CODE_AJXZ.json`).then((response) => {
if (response.success === true) {
this.laData = response.data.rows.filter((val) => {
if (val.id.indexOf(this.ajzlb, 0) == 0) {
return val;
}
return val.parentId == `${this.ajzlb}0000`;
});
response.data.rows.map((item) => {
this.laData.forEach((good) => {
if (good.id == item.parentId) {
// this.laData.push(item);
}
});
});
console.log(this.laData);
}
});
axios.get(`JsonData/CODE_AJXLB.json`).then((response) => {
......@@ -1601,28 +1579,20 @@ export default {
this.xaData = [];
this.parentLb.childId = "";
this.parentLb.id = res.id;
// queryCodeByType({type: 'CODE_AJXZ', id: res.id}).then((res) => {
// if (res.rows != null && res.rows.length > 0) {
// this.laData = res.rows;
// }
// }).catch((err) => {
// console.log(err);
// this.$message.error("数据加载失败");
// });
// axios.get(`JsonData/CODE_AJXZ.json`).then((response) => {
// if (response.success === true) {
// this.laData = response.data.rows;
// }
// });
var laDataData = []
axios.get(`JsonData/CODE_AJXZ.json`).then((response) => {
if (response.success === true) {
response.data.rows.map((item) =>{
if(item.parentId == res.id) {
laDataData.push(item)
}
})
if(laDataData.length > 0){
this.laData = laDataData
}
}
});
// queryCodeByType({type: 'CODE_AJXLB', id: res.id}).then((res) => {
// if (res.rows != null && res.rows.length > 0) {
// this.xaData = res.rows;
// }
// }).catch((err) => {
// console.log(err);
// this.$message.error("数据加载失败");
// });
axios.get(`JsonData/CODE_AJXLB.json`).then((response) => {
if (response.success === true) {
this.xaData = response.data.rows.filter((val) => {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment