diff --git a/src/assets/js/http.js b/src/assets/js/http.js index 6c39f338..30700295 100644 --- a/src/assets/js/http.js +++ b/src/assets/js/http.js @@ -42,6 +42,7 @@ if (process.env.NODE_ENV == 'development') { // axios.defaults.baseURL = 'http://124.71.178.44:100/' // tag: 本地 axios.defaults.baseURL = 'http://192.168.34.125:6023/'; //本地 http/1.1 + // axios.defaults.baseURL = 'http://120.196.217.6:7000/'; // axios.defaults.baseURL = 'http://120.196.217.6:7000/'; // 鹤洲 // axios.defaults.baseURL = 'http://182.90.224.237:7000/'; // 广西 // axios.defaults.baseURL = 'http://120.196.217.6:7000/' //鹤洲 diff --git a/src/components/account.vue b/src/components/account.vue index b90b7e6f..44a9e82f 100644 --- a/src/components/account.vue +++ b/src/components/account.vue @@ -15,7 +15,7 @@

{{ $store.state.userInfo.companyName }}

- +

客服电话:{{$store.state.userInfo.customerServicePhone}}

+ @@ -233,6 +237,7 @@ export default { }, data() { return { + checkAll:false, //是否全选 addEditForm: { roleName: "", roleDesc: "", @@ -488,10 +493,22 @@ export default { // this.pagInfo.pageNo = val; // this.getList(); // }, - handleCheckChange(data, checked, indeterminate) { + handleCheckChange(e) { + console.log('eeee',e) // console.log(data, checked, indeterminate); - console.log(this.$refs.tree.getCheckedKeys()); - } + // console.log('选择',this.$refs.tree.getCheckedKeys()); + }, + // 全选反选 + // selectAll(){ + // if(this.checkAll){ + // console.log('111111',this.$refs) + // // this.$refs.tree.setCheckedNodes(this.projectMenus); + // }else{ + // this.$nextTick(()=>{ + // this.$refs.tree.setCheckedNodes([]) + // }) + // } + // }, }, };