瀏覽代碼

修改新闻提交后自动审核

Sanmu8 1 年之前
父節點
當前提交
7ccb81164f
共有 1 個文件被更改,包括 5 次插入4 次删除
  1. 5 4
      src/views/news/index.vue

+ 5 - 4
src/views/news/index.vue

@@ -365,7 +365,7 @@
       </el-form>
       <div slot="footer" class="dialog-footer">
         <el-button type="info" @click="submitzc">暂 存</el-button>
-        <el-button type="primary" @click="submitForm">确 定</el-button>
+        <el-button type="primary" @click="submitForm">提 交 审 核</el-button>
         <el-button @click="cancel">取 消</el-button>
       </div>
     </el-dialog>
@@ -618,7 +618,6 @@ export default {
     submitForm() {
       this.$refs["form"].validate((valid) => {
         if (valid) {
-          this.form.status = "1";
           if (this.form.id != null) {
             updateNEWS(this.form).then((response) => {
               this.$modal.msgSuccess("修改成功");
@@ -628,12 +627,14 @@ export default {
             });
           } else {
             addNEWS(this.form).then((response) => {
-              handleCommit(id).then((res) => {
+              // let formData = new FormData()
+              // formData.append('id',this.form.id)
+              // newCommit(formData).then((res) => {
                 this.$modal.msgSuccess("新增成功");
                 this.open = false;
                 this.getList();
                 this.reset();
-              });
+              // });
             });
           }
         }