Kaynağa Gözat

Merge branch 'gyj' into dev

gyj 2 yıl önce
ebeveyn
işleme
bc4691123e

+ 1
- 1
src/views/caseManagement/caseList.vue Dosyayı Görüntüle

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 Dosyayı Görüntüle

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

+ 2
- 0
src/views/officialSeal/components/uploadSeal.vue Dosyayı Görüntüle

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

+ 3
- 0
src/views/officialSeal/officialSealList.vue Dosyayı Görüntüle

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