作者 牛承志
... ... @@ -177,16 +177,11 @@ export default {
let list = this.$route.query.list;
let status = this.$route.query.status;
let check = this.$route.query.check;
let define = ''
if(list.processDefineStruct){
define = JSON.parse(list.processDefineStruct);
}
console.log(list)
console.log(define)
if(check) {
this.checkdis = true
}
if (status == 1) {
let define = JSON.parse(list.processDefineStruct);
this.id = list.id;
this.Trialfield = define.id
this.Trialnum = list.recordNum;
... ... @@ -208,14 +203,14 @@ export default {
this.getTrialnum();
}
this.getdietestlist();
this.getworknumberlist();
// this.getworknumberlist();
this.gteprocesslist()//流程列表
},
methods: {
getSelectTableData(params) {
return new Promise((r) => {
getOrderChoseList(params).then((res) => {
// r(res);
r(res);
});
});
},
... ... @@ -355,15 +350,14 @@ export default {
});
});
},
getworknumberlist(params) {
//工单号码
return new Promise((r) => {
worknumber(params).then((res) => {
console.log("worknumberlist", res);
this.worknumberlist = res;
});
});
},
// getworknumberlist(params) {
// //工单号码
// return new Promise((r) => {
// worknumber(params).then((res) => {
// this.worknumberlist = res;
// });
// });
// },
changeworknum(val) {
let params = {
orderNo: val,
... ...