Browse Source

2022-01-25 去掉 控制台打印

East 3 years ago
parent
commit
83ab26cc6b

+ 2 - 3
src/components/table-cpn/TableCpn.vue

@@ -1,7 +1,7 @@
 <!--
  * @Author: your name
  * @Date: 2022-01-06 16:46:18
- * @LastEditTime: 2022-01-25 11:03:34
+ * @LastEditTime: 2022-01-25 11:11:34
  * @LastEditors: Please set LastEditors
  * @Description: 再封一次
  * @FilePath: \goldenPig\src\components\table-cpn\TableCpn.vue
@@ -130,8 +130,7 @@ export default {
   },
   watch: {
     searchForm: {
-      handler(newVal) {
-        console.log(newVal);
+      handler() {
         this.init();
       },
       deep: true,

+ 1 - 2
src/views/basic-data/house-admin/HouseAdmin.vue

@@ -1,7 +1,7 @@
 <!--
  * @Author: your name
  * @Date: 2022-01-08 10:36:43
- * @LastEditTime: 2022-01-25 11:07:21
+ * @LastEditTime: 2022-01-25 11:11:29
  * @LastEditors: Please set LastEditors
  * @Description: 基础资料 - 栋舍管理
  * @FilePath: \goldenPig\src\views\basic-data\house-admin\HouseAdmin.vue
@@ -197,7 +197,6 @@ export default {
           // 确定默认选中牧场
           this.searchForm2.farmId = newVal;
           this.searchForm.farmId = newVal;
-          console.log(this.searchForm.farmId);
           this.modalForm2.farmId = newVal;
         }
       },