dev_review
yujialong 7 months ago
parent ba7c09ecf8
commit 45ec91acba
  1. 2
      src/views/customer/customer.vue
  2. 5
      src/views/match/manage/matchArchList.vue

@ -153,7 +153,7 @@
v-auth>查看</el-button> v-auth>查看</el-button>
<el-button type="text" <el-button type="text"
@click="edit(scope.row)" @click="edit(scope.row)"
v-auth>编辑</el-button> v-auth>管理</el-button>
<el-button type="text" <el-button type="text"
@click="handleDelete(scope.row)" @click="handleDelete(scope.row)"
v-auth>删除</el-button> v-auth>删除</el-button>

@ -449,14 +449,13 @@ export default {
this.$post(this.api.batchDeleteContestGrade, { this.$post(this.api.batchDeleteContestGrade, {
ids: [this.method == 2 ? row.scoreId : row.reportId], ids: [this.method == 2 ? row.scoreId : row.reportId],
competitionId: this.id, competitionId: this.id,
stageId: row.stageId stageId: this.stageId
}).then(res => { }).then(res => {
util.successMsg("删除成功"); util.successMsg("删除成功");
this.getData(); this.getData();
}).catch(res => { }).catch(res => {
}); });
}).catch(() => { }).catch(() => { });
});
}, },
delAllData () { // delAllData () { //
const list = this.multipleSelection const list = this.multipleSelection

Loading…
Cancel
Save