jun.zhang 1 year ago
parent
commit
e65cf7642c

+ 6 - 1
src/views/business/meet/checkin/edit/index.vue

@@ -1102,7 +1102,7 @@ export default {
         abnormalID: [],
         abnormalPlaceID: [],
         lockAPP: 0,
-        registerPlaceID: "",
+        registerPlaceID: null,
       },
       matterForm: {
         delMatter: [],
@@ -1249,6 +1249,11 @@ export default {
     //     }
     //   }
     // }
+     "activityForm.registerPlaceID": {
+      handler(newVal, oldVal) {
+       this.activityForm.registerPlaceID = Number(newVal)
+      }
+    }
   },
   methods: {
     importToBaseInfo() {

+ 1 - 19
src/views/business/meet/interview/hasInterview/index.vue

@@ -37,7 +37,7 @@
           >
         </el-form-item>
       </template>
-      <template slot="moreBtn" slot-scope="scope">
+      <template slot="moreBtn">
         <el-row style="margin-bottom: 10px; margin-right: 10px">
           <div
             class="btn"
@@ -118,24 +118,6 @@ export default {
         });
       });
     },
-    // exportInterviewBtnClick111(row) {
-    //   Axios({
-    //     url: "http://localhost:9080/petition/meet/export/meetInterviewDetail",
-    //     method: "post",
-    //     data: row,
-    //     processData: false,
-    //     contentType: false,
-    //     responseType: "blob"
-    //   }).then(res => {
-    //     console.log(res);
-    //     let blob = new Blob([res.data], { type: "application/vnd.ms-excel" });
-    //     var url = URL.createObjectURL(blob);
-    //     var a = document.createElement("a");
-    //     a.href = url;
-    //     a.download = "来访接谈处理单.xls";
-    //     a.click();
-    //   });
-    // }
   },
 };
 </script>