新需求添加
This commit is contained in:
parent
03aca53ea4
commit
f7c300ab8f
|
@ -244,6 +244,9 @@
|
||||||
|
|
||||||
|
|
||||||
</el-tab-pane>
|
</el-tab-pane>
|
||||||
|
<el-tab-pane label="管理员列表" lazy>
|
||||||
|
<user :deptId="detail.deptId" v-if="detail.deptId" />
|
||||||
|
</el-tab-pane>
|
||||||
|
|
||||||
</el-tabs>
|
</el-tabs>
|
||||||
</el-card>
|
</el-card>
|
||||||
|
@ -289,7 +292,7 @@ import refund from "@/views/system/refund/index";
|
||||||
import audit from "@/views/system/audit/index";
|
import audit from "@/views/system/audit/index";
|
||||||
import flow from "@/views/system/flow/index";
|
import flow from "@/views/system/flow/index";
|
||||||
import withdraw from "@/views/system/withdrawAudit/index";
|
import withdraw from "@/views/system/withdrawAudit/index";
|
||||||
|
import user from "@/views/system/user/index";
|
||||||
|
|
||||||
// import Withdraw from '@/views/system/withdraw/index.vue'
|
// import Withdraw from '@/views/system/withdraw/index.vue'
|
||||||
// import RealName from '@/views/ss/realName/index.vue'
|
// import RealName from '@/views/ss/realName/index.vue'
|
||||||
|
@ -301,7 +304,7 @@ import withdraw from "@/views/system/withdrawAudit/index";
|
||||||
export default {
|
export default {
|
||||||
name: 'User/:deptId',
|
name: 'User/:deptId',
|
||||||
mixins: [$view, $serviceType],
|
mixins: [$view, $serviceType],
|
||||||
components: { Area, Fees, Model, device, order, partner, refund, audit, flow, withdraw, BooleanTag, Recharge, UserRechargeReport, UserConfigDialog, UserAccount, UserDevice, LineChart },
|
components: { Area, Fees,user, Model, device, order, partner, refund, audit, flow, withdraw, BooleanTag, Recharge, UserRechargeReport, UserConfigDialog, UserAccount, UserDevice, LineChart },
|
||||||
dicts: ['sys_normal_disable', 'sys_yes_no'],
|
dicts: ['sys_normal_disable', 'sys_yes_no'],
|
||||||
computed: {
|
computed: {
|
||||||
SmUserType() {
|
SmUserType() {
|
||||||
|
|
|
@ -265,6 +265,13 @@ export default {
|
||||||
return this.userName === 'admin' ? 21 : 24;
|
return this.userName === 'admin' ? 21 : 24;
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
props: {
|
||||||
|
// 用户id
|
||||||
|
deptId: {
|
||||||
|
type: Number,
|
||||||
|
default: null,
|
||||||
|
}
|
||||||
|
},
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
options: [],
|
options: [],
|
||||||
|
@ -333,7 +340,7 @@ export default {
|
||||||
userName: undefined,
|
userName: undefined,
|
||||||
phonenumber: undefined,
|
phonenumber: undefined,
|
||||||
status: undefined,
|
status: undefined,
|
||||||
deptId: undefined,
|
deptId: this.deptId,
|
||||||
typeList: "00,03"
|
typeList: "00,03"
|
||||||
},
|
},
|
||||||
// 列信息
|
// 列信息
|
||||||
|
@ -518,6 +525,7 @@ export default {
|
||||||
getDeptTree() {
|
getDeptTree() {
|
||||||
deptTreeSelect().then(response => {
|
deptTreeSelect().then(response => {
|
||||||
this.deptOptions = response.data;
|
this.deptOptions = response.data;
|
||||||
|
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
// 筛选节点
|
// 筛选节点
|
||||||
|
@ -611,6 +619,10 @@ export default {
|
||||||
this.open = true;
|
this.open = true;
|
||||||
this.title = "添加用户";
|
this.title = "添加用户";
|
||||||
this.form.password = this.initPassword;
|
this.form.password = this.initPassword;
|
||||||
|
if(this.deptId){
|
||||||
|
this.form.deptId=this.deptId
|
||||||
|
}
|
||||||
|
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
/** 修改按钮操作 */
|
/** 修改按钮操作 */
|
||||||
|
|
Loading…
Reference in New Issue
Block a user