Browse Source

修改门户管理-新闻管理-草稿、驳回、下架的新闻提交审核的传参

Sanmu8 1 year ago
parent
commit
fd6ed3e439
2 changed files with 9 additions and 14 deletions
  1. 2 2
      src/api/portal/news/NEWS.js
  2. 7 12
      src/views/news/index.vue

+ 2 - 2
src/api/portal/news/NEWS.js

@@ -82,10 +82,10 @@ export function setTop(data) {
 
 
 // 提交审核   暂存提交  驳回提交   新增新闻都需要调用这个
-export function newCommit(data) {
+export function newCommit(CbNewsVo) {
   return request({
     url: '/news/audit/',
     method: 'post',
-    data:data
+    data:CbNewsVo
   })
 }

+ 7 - 12
src/views/news/index.vue

@@ -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();
       });