Sfoglia il codice sorgente

Merge branch 'gyj' into dev

gyj 2 anni fa
parent
commit
bc4691123e

+ 1
- 1
src/views/caseManagement/caseList.vue Vedi File

@@ -849,6 +849,6 @@ export default {
849 849
 <style>
850 850
 /* // #formContainer {} */
851 851
 .el-table .pendingTrial {
852
-    background:oldlace;
852
+    background:rgb(148, 224, 25);
853 853
   }
854 854
 </style>

+ 1
- 0
src/views/caseManagement/components/caseentryDialog.vue Vedi File

@@ -762,6 +762,7 @@ export default {
762 762
   watch: {
763 763
     initpaymentArr: {
764 764
       handler(val) {
765
+         this.caseAttachListArr = []
765 766
         if (val) {
766 767
           this.applicateArr = [];
767 768
           this.quiltArr = [];

+ 2
- 0
src/views/officialSeal/components/uploadSeal.vue Vedi File

@@ -70,6 +70,7 @@ export default {
70 70
                     this.filedata.id = this.uploadData.id;
71 71
                     this.filedata.sealName = this.ruleForm.sealName;
72 72
                     this.$refs.upload.submit();
73
+                    
73 74
                 }
74 75
             });
75 76
         },
@@ -86,6 +87,7 @@ export default {
86 87
         handleSuccess(response) {
87 88
             if (response.code == 200) {
88 89
                 this.$message.success('上传成功')
90
+                this.$emit("cancelUpload");
89 91
             } else {
90 92
                 this.$message.error(response.msg);
91 93
             }

+ 3
- 0
src/views/officialSeal/officialSealList.vue Vedi File

@@ -183,6 +183,9 @@ export default {
183 183
             this.uploadVisable = true;
184 184
             this.uploadData = row;
185 185
         },
186
+        closeUploadSeal(){
187
+            this.uploadVisable = false
188
+        },
186 189
         cancelFilingreview() {
187 190
             this.operateVisable = false;
188 191
         },