yangjunhao 1 жил өмнө
parent
commit
de69ddad40

+ 10 - 1
src/api/portal/news/NEWS.js

@@ -44,6 +44,15 @@ export function updateNEWS(data) {
   })
 }
 
+// 修改网站新闻
+export function updateAndex(data) {
+  return request({
+    url: '/news/audit',
+    method: 'post',
+    data: data
+  })
+}
+
 // 删除网站新闻
 export function delNEWS(id) {
   return request({
@@ -79,4 +88,4 @@ export function newCommit(data) {
     method: 'post',
     data:data
   })
-}
+}

+ 26 - 15
src/views/news/index.vue

@@ -386,6 +386,7 @@ import {
   upload,
   setTop,
   newCommit,
+  updateAndex
 } from "@/api/portal/news/NEWS.js";
 
 export default {
@@ -530,7 +531,7 @@ export default {
         //已发布 已审核
         row.status = "5";
         updateNEWS(row).then((response) => {
-          this.$modal.msgSuccess("发布成功");
+          this.$modal.msgSuccess("修改成功");
           this.open = false;
           this.getList();
           this.reset();
@@ -619,8 +620,8 @@ export default {
       this.$refs["form"].validate((valid) => {
         if (valid) {
           if (this.form.id != null) {
-            this.form.status = '1'
-            updateNEWS(this.form).then((response) => {
+            // this.form.status = '1'
+            updateAndex(this.form).then((response) => {
               this.$modal.msgSuccess("修改成功");
               this.open = false;
               this.getList();
@@ -650,18 +651,28 @@ export default {
       }
     },
     submitzc() {
-      this.$refs["form"].validate((valid) => {
-        if (valid) {
-          this.form.status = "0";
-          addNEWS(this.form).then((response) => {
-            this.$modal.msgSuccess("暂存成功");
-            this.open = false;
-            this.getList();
-            this.reset();
-          });
-        }
-      });
-    },
+      console.log(this.form.id)
+        this.$refs["form"].validate((valid) => {
+          if (valid) {
+            if(this.form.id == null){
+              this.form.status = "0";
+              addNEWS(this.form).then((response) => {
+                this.$modal.msgSuccess("暂存成功");
+                this.open = false;
+                this.getList();
+                this.reset();
+              });
+            }else if(this.form.status == 0 || this.form.status == 2 || this.form.status == 3 || this.form.status == 5){
+              updateNEWS(this.form).then((response) => {
+                this.$modal.msgSuccess("修改成功");
+                this.open = false;
+                this.getList();
+                this.reset();
+              });
+            }
+          }
+        });
+      },
     /** 删除按钮操作 */
     handleDelete(row) {
       const ids = row.id || this.ids;