diff --git a/ant-design-vue-jeecg/src/views/team/modules/GroupxModal.vue b/ant-design-vue-jeecg/src/views/team/modules/GroupxModal.vue index 95003dce..bec6a25a 100644 --- a/ant-design-vue-jeecg/src/views/team/modules/GroupxModal.vue +++ b/ant-design-vue-jeecg/src/views/team/modules/GroupxModal.vue @@ -14,16 +14,22 @@ - - + + + + + + + - - + + {{ model.enterprisesManager }} @@ -84,22 +90,26 @@ export default { edit: "/groupx/edit", sysUserList: "/sys/user/list", }, + // 选择用户查询条件配置 + selectUserQueryConfig: [ + {key: 'phone', label: '电话'}, + ], } }, created() { }, methods: { - async getQuestionBankList() { + async getMobile() { let param = { "username": this.model.enterprisesManager, } let that = this; const {data: res} = await this.$axios.get('/jeecg-boot/sys/user/list', {params: param}) // this.questionBankList = res.result - console.log("userlist:"+JSON.stringify(res)) - console.log("the phone:"+JSON.stringify(res.result.records[0].phone)) + console.log("userlist:" + JSON.stringify(res)) + console.log("the phone:" + JSON.stringify(res.result.records[0].phone)) let phone = JSON.stringify(res.result.records[0].phone); - that.model.mobile = phone; + this.model.mobile = phone; }, // getMobile() {