Browse Source

审核新闻

gks 1 year ago
parent
commit
3fa8dd80d9
2 changed files with 9 additions and 5 deletions
  1. 1 1
      src/views/ARTICLE/index.vue
  2. 8 4
      src/views/news/edit.vue

+ 1 - 1
src/views/ARTICLE/index.vue

@@ -148,7 +148,7 @@
       >
       <template slot-scope="scope">
           {{ parseTime(scope.row.createTime, '{y}') }}
-        </template>
+      </template>
       </el-table-column>
       <el-table-column
         label="保税区名称"

+ 8 - 4
src/views/news/edit.vue

@@ -39,13 +39,13 @@
         v-if="checkPermi(['business:NEWS:confirm'])"
         type="primary"
         @click="submitForm('add')"
-        >确 定</el-button
+        >提交审核</el-button
       >
       <el-button
         v-if="checkPermi(['business:NEWS:confirm'])"
         type="warning"
         @click="submitForm('draft')"
-        >暂 存</el-button
+        >暂存草稿</el-button
       >
       <el-button @click="$layer.close(layerid)">取 消</el-button>
     </div>
@@ -129,15 +129,17 @@ export default {
     submitForm(type) {
       this.$refs["form"].validate((valid) => {
         if (valid) {
-          this.form.status = 7;
+          this.form.status = 1;
           if (this.form.id != null && type == "add") {
-            updateNEWS(this.form).then((response) => {
+            console.log(1);
+            updateAndex(this.form).then((response) => {
               this.$modal.msgSuccess("修改成功");
               this.$layer.close(this.layerid);
               this.$parent.getList();
             });
           } else {
             if (this.form.id != null && type == "draft") {
+            console.log(2);
               this.form.status = 0;
               updateNEWS(this.form).then((response) => {
                 this.$modal.msgSuccess("修改成功");
@@ -145,12 +147,14 @@ export default {
                 this.$parent.getList();
               });
             } else if (type == "add") {
+            console.log(3);
               addNEWS(this.form).then((response) => {
                 this.$modal.msgSuccess("新增成功");
                 this.$layer.close(this.layerid);
                 this.$parent.getList();
               });
             } else if (type == "draft") {
+            console.log(4);
               this.form.status = 0;
               addNEWS(this.form).then((response) => {
                 this.$modal.msgSuccess("操作成功");