Merge branch 'bjxz-dev' of http://139.9.66.234:18023/dhp/zhgdyunapp into bjxz-dev

This commit is contained in:
kun 2024-05-24 23:12:50 +08:00
commit 4f45f2310d

View File

@ -121,7 +121,7 @@
this.info = JSON.parse(options.info);
this.statusBarHeight = uni.getStorageSync('systemInfo').statusBarHeight
this.projectSn = JSON.parse(uni.getStorageSync('projectDetail')).projectSn;
console.log(options);
console.log(this.info);
},
onShow(){
this.getcheckingList();
@ -148,7 +148,7 @@
success: res => {
console.log(res.result.records);
that.checkingList = res.result.records;
this.checkingInfoDetail = res.result.records[0];
this.checkingInfoDetail = res.result.records.length > 0 ? res.result.records[0] : {};
this.getcheckingInfo();
}
})