|
@@ -230,19 +230,13 @@
|
|
|
v-hasPermi="['business:NEWS:remove']"
|
|
|
>下架</el-button
|
|
|
>
|
|
|
- <el-popconfirm
|
|
|
- title="确定提交审核吗?"
|
|
|
- @confirm="handleCommit(scope.row.id)"
|
|
|
- >
|
|
|
<el-button
|
|
|
- slot="reference"
|
|
|
v-if="scope.row.status == 0 || scope.row.status == 2"
|
|
|
size="mini"
|
|
|
type="text"
|
|
|
v-hasPermi="['business:NEWS:remove']"
|
|
|
- >提交审核</el-button
|
|
|
- >
|
|
|
- </el-popconfirm>
|
|
|
+ @click="handleCommit(scope.row)"
|
|
|
+ >提交审核</el-button>
|
|
|
|
|
|
<el-button
|
|
|
v-if="scope.row.status == 0 || scope.row.status == 2 || scope.row.status == 5"
|
|
@@ -606,10 +600,11 @@ export default {
|
|
|
}
|
|
|
});
|
|
|
},
|
|
|
- handleCommit(id) {
|
|
|
- let data = new FormData();
|
|
|
- data.append("id", id);
|
|
|
- newCommit(data).then((response) => {
|
|
|
+ handleCommit(row) {
|
|
|
+ // let data = new FormData();
|
|
|
+ // data.append("id", id);
|
|
|
+ let CbNewsVo = row
|
|
|
+ newCommit(CbNewsVo).then((response) => {
|
|
|
this.$modal.msgSuccess("提交审核成功!");
|
|
|
this.getList();
|
|
|
});
|