Browse Source

新闻暂存

gks 1 year ago
parent
commit
e4065e5242
3 changed files with 39 additions and 18 deletions
  1. 30 13
      src/views/news/edit.vue
  2. 7 2
      src/views/norm/quotaBonded.vue
  3. 2 3
      src/views/system/notice/index.vue

+ 30 - 13
src/views/news/edit.vue

@@ -35,8 +35,18 @@
       </el-form-item>
     </el-form>
     <div class="mfooter">
-      <el-button v-if="checkPermi(['business:NEWS:confirm'])" type="primary" @click="submitForm('add')" >确 定1</el-button>
-      <el-button v-if="checkPermi(['business:NEWS:confirm'])" type="warning" @click="submitForm('draft')">暂 存</el-button>
+      <el-button
+        v-if="checkPermi(['business:NEWS:confirm'])"
+        type="primary"
+        @click="submitForm('add')"
+        >确 定</el-button
+      >
+      <el-button
+        v-if="checkPermi(['business:NEWS:confirm'])"
+        type="warning"
+        @click="submitForm('draft')"
+        >暂 存</el-button
+      >
       <el-button @click="$layer.close(layerid)">取 消</el-button>
     </div>
   </div>
@@ -119,23 +129,30 @@ export default {
     submitForm(type) {
       this.$refs["form"].validate((valid) => {
         if (valid) {
-          if (this.form.id != null) {
-            updateAndex(this.form).then((response) => {
+          this.form.status = 1;
+          if (this.form.id != null && type == "add") {
+            
+            updateNEWS(this.form).then((response) => {
               this.$modal.msgSuccess("修改成功");
               this.$layer.close(this.layerid);
               this.$parent.getList();
             });
           } else {
-            if (type == "add") {
-              this.form.status = "1";
-            } else if (type == "draft") {
-              this.form.status = "0";
+            if (type == "draft") {
+              this.form.status = 0;
+           
+              updateNEWS(this.form).then((response) => {
+                this.$modal.msgSuccess("修改成功");
+                this.$layer.close(this.layerid);
+                this.$parent.getList();
+              });
+            } else if (type == "add") {
+              addNEWS(this.form).then((response) => {
+                this.$modal.msgSuccess("新增成功");
+                this.$layer.close(this.layerid);
+                this.$parent.getList();
+              });
             }
-            addNEWS(this.form).then((response) => {
-              this.$modal.msgSuccess("新增成功");
-              this.$layer.close(this.layerid);
-              this.$parent.getList();
-            });
           }
         }
       });

+ 7 - 2
src/views/norm/quotaBonded.vue

@@ -491,8 +491,11 @@ export default {
         this.QUOTAFEEList = response.data.bondedFeeList;
         this.QUOTAFEEList.forEach((item) => (item.fileList = []));
         this.QUOTAFEEList.forEach((item) => {
-          item.fileList.push({ name: item.fileNames, url: item.linkUrls });
+          if(item.fileNames && item.linkUrls){
+            item.fileList.push({ name: item.fileNames, url: item.linkUrls });
+          }
         });
+        console.log(this.QUOTAFEEList);
         this.open = true;
         this.$forceUpdate();
         this.title = "辅助指标录入修改";
@@ -510,7 +513,9 @@ export default {
         this.QUOTAFEEList = response.data.bondedFeeList;
         this.QUOTAFEEList.forEach((item) => (item.fileList = []));
         this.QUOTAFEEList.forEach((item) => {
-          item.fileList.push({ name: item.fileNames, url: item.linkUrls });
+          if(item.fileNames && item.linkUrls){
+            item.fileList.push({ name: item.fileNames, url: item.linkUrls });
+          }
         });
 
 

+ 2 - 3
src/views/system/notice/index.vue

@@ -1,5 +1,6 @@
 <template>
   <div class="app-container">
+   
     <el-form
       :model="queryParams"
       ref="queryForm"
@@ -369,12 +370,10 @@ export default {
     },
     /** 提交按钮 */
     submitForm: function () {
-      
       this.$refs["form"].validate((valid) => {
         if (valid) {
-          const pattern = /\"/g;
-          this.form.noticeContent = this.form.noticeContent.replace(pattern, "'");          
           if (this.form.noticeId != undefined) {
+            this.form.noticeContent = JSON.stringify(this.form.noticeContent);
             updateNotice(JSON.stringify(this.form)).then((response) => {
               this.$modal.msgSuccess("修改成功");
               this.open = false;