| | |
| | | <span v-if="scope.row.status == 2" class="green">已驳回</span> |
| | | </template> |
| | | </el-table-column> |
| | | <el-table-column fixed="right" label="操作" width="150"> |
| | | <el-table-column fixed="right" label="操作" width="200"> |
| | | <template slot-scope="scope"> |
| | | <el-button v-if="scope.row.status == 0" @click="shClick(scope.row)" type="text" size="small">审核</el-button> |
| | | <el-button @click="editClick(scope.row)" type="text" size="small" >详情</el-button> |
| | | <el-button @click="evaluateClick(scope.row)" type="text" size="small" >评论列表</el-button> |
| | | <el-button @click="deleteClick(scope.row)" type="text" size="small">删除</el-button> |
| | | </template> |
| | | </el-table-column> |
| | |
| | | this.getTableList(); |
| | | }, |
| | | |
| | | evaluateClick(item) { |
| | | let self = this; |
| | | let params = item.project_id; |
| | | this.$router.push({ |
| | | path: '/plus/release/evaluate/list', |
| | | query: { |
| | | project_id: params |
| | | } |
| | | }); |
| | | }, |
| | | |
| | | |
| | | /*获取列表*/ |
| | | getTableList() { |