| | |
| | | </el-dropdown> |
| | | </el-form> |
| | | </div> |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | <div class="library-table"> |
| | | <div class="table-header"> |
| | | <div class="search-bar"> |
| | |
| | | pageSize: 8, |
| | | checkskipvisible: false, |
| | | form:{}, |
| | | // handleClose:{}, |
| | | formLabelWidth: '120px', |
| | | checked:{}, |
| | | usertt:[], |
| | | Auditconclusion:{}, |
| | | tableRow: {}, |
| | | |
| | | |
| | | }; |
| | | }, |
| | | created() { |
| | |
| | | //通过 |
| | | async checkskip(row) { |
| | | console.log(this.tableRow); |
| | | this.reportTable[this.tableRow.$index].status=2 |
| | | this.reportTable[this.tableRow.$index].status=1 |
| | | this.transmitData(this.tableRow.row.id) |
| | | this.checkskipvisible= false |
| | | this.$message({ |
| | | message: '通过成功', |
| | | type: 'success' |
| | | }); |
| | | |
| | | }, |
| | | //不通过 |
| | |
| | | this.reportTable[this.tableRow.$index].status=0 |
| | | this.transmitData(this.tableRow.row.id) |
| | | this.checkskipvisible= false |
| | | this.$message({ |
| | | message: '待通过', |
| | | type: 'warning' |
| | | }); |
| | | |
| | | }, |
| | | //审核 |