fz 2 anni fa
parent
commit
4293721d4c

+ 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 = [];

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

@@ -71,6 +71,7 @@ export default {
71 71
                     this.filedata.id = this.uploadData.id;
72 72
                     this.filedata.sealName = this.ruleForm.sealName;
73 73
                     this.$refs.upload.submit();
74
+                    
74 75
                 }
75 76
             });
76 77
         },
@@ -86,8 +87,13 @@ export default {
86 87
         },
87 88
         handleSuccess(response) {
88 89
             if (response.code == 200) {
90
+<<<<<<< HEAD
89 91
                 this.$message.success('上传成功');
90 92
                 this.cancel()
93
+=======
94
+                this.$message.success('上传成功')
95
+                this.$emit("cancelUpload");
96
+>>>>>>> bc4691123ec628dfcb0e8da135f81da669366537
91 97
             } else {
92 98
                 this.$message.error(response.msg);
93 99
             }

+ 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
         },