| | |
| | | checkitem_code: i.code, |
| | | checkitem_name: i.name, |
| | | check_value: i.real_value ? i.real_value : '', |
| | | check_result: i.check_result ? 'OK' : 'NG', |
| | | check_result: i.isPlain ? 'OK' : 'NG', |
| | | checkitem_descr: '' |
| | | }) |
| | | }) |
| | |
| | | |
| | | |
| | | setTimeout(() => { |
| | | let prevPage = getCurrentPages()[getCurrentPages().length - 2]; // 上一页面实例 |
| | | prevPage.$vm.fromSubmitData() // 调用上一页 定义的方法 |
| | | // let prevPage = getCurrentPages()[getCurrentPages().length - 2]; // 上一页面实例 |
| | | // prevPage.$vm.fromSubmitData() // 调用上一页 定义的方法 |
| | | uni.navigateBack({ |
| | | delta: 1, //返回层数,1则上页 |
| | | delta: 2, //返回层数,1则上页 |
| | | }) |
| | | }, 1000) |
| | | |