fz il y a 2 ans
Parent
révision
4293721d4c

+ 1
- 1
src/views/caseManagement/caseList.vue Voir le fichier

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

+ 1
- 0
src/views/caseManagement/components/caseentryDialog.vue Voir le fichier

762
   watch: {
762
   watch: {
763
     initpaymentArr: {
763
     initpaymentArr: {
764
       handler(val) {
764
       handler(val) {
765
+         this.caseAttachListArr = []
765
         if (val) {
766
         if (val) {
766
           this.applicateArr = [];
767
           this.applicateArr = [];
767
           this.quiltArr = [];
768
           this.quiltArr = [];

+ 6
- 0
src/views/officialSeal/components/uploadSeal.vue Voir le fichier

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

+ 3
- 0
src/views/officialSeal/officialSealList.vue Voir le fichier

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