01f9c92c by xiaomiao

--no commit message

1 parent 2761d1cf
......@@ -139,7 +139,7 @@ export default {
formdata.append("bestepid", this.$route.query.bestepid);
getSpyjList(formdata).then((res) => {
this.$endLoading();
if (res.code === 200 && res.result) {
this.$nextTick(() => {
this.tableData = res.result;
......@@ -150,6 +150,7 @@ export default {
var index = this.tableData.findIndex(
(item) => item.jddm === this.$parent.dqhj
);
console.log("this.tableData111",this.tableData);
if (index == -1) {
switch (this.$parent.dqhj) {
case "cs":
......@@ -162,6 +163,7 @@ export default {
this.tableData.push({ jdmc: "核定", jddm: "hd", sxh: 3 });
break;
}
console.log("this.tableData222",this.tableData);
}
this.tableData.forEach((item) => {
item.show = true;
......@@ -173,9 +175,13 @@ export default {
item["userid"] = this.userInfo.id;
item.show = false;
}
console.log("this.tableData333",this.tableData);
});
console.log("this.tableData444",this.tableData);
this.$endLoading();
});
}
});
},
/**
......