Browse Source

联系人调整

qymljy 1 year ago
parent
commit
4628a4f73a
1 changed files with 8 additions and 1 deletions
  1. 8 1
      src/template/contactsNewTemplate/index.vue

+ 8 - 1
src/template/contactsNewTemplate/index.vue

@@ -18,7 +18,7 @@
             <span >{{ scope.row.name?scope.row.name:'--' }}</span>
           </template>
         </el-table-column>
-        <el-table-column width="120" label="联系dddd方式">
+        <el-table-column width="120" label="联系方式">
           <template slot-scope="scope">
             <span >{{ scope.row.phonenumber?scope.row.phonenumber:'--' }}</span>
           </template>
@@ -131,6 +131,13 @@ export default {
       this.param.content.pageNumber = val
       this.listData()
     },
+  },
+  watch:{
+    'show':function (val){
+      if (!val){
+        this.param.content.where.condition = ''
+      }
+    }
   }
 }
 </script>