| | |
| | | </el-dropdown> |
| | | </el-form> |
| | | </div> |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | <div class="library-table"> |
| | | <div class="table-header"> |
| | | <div class="search-bar"> |
| | |
| | | //通过 |
| | | 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' |
| | | }); |
| | | |
| | | }, |
| | | //审核 |