新需求添加

This commit is contained in:
tx 2024-11-08 09:54:02 +08:00
parent 03aca53ea4
commit f7c300ab8f
2 changed files with 18 additions and 3 deletions

View File

@ -244,6 +244,9 @@
</el-tab-pane>
<el-tab-pane label="管理员列表" lazy>
<user :deptId="detail.deptId" v-if="detail.deptId" />
</el-tab-pane>
</el-tabs>
</el-card>
@ -289,7 +292,7 @@ import refund from "@/views/system/refund/index";
import audit from "@/views/system/audit/index";
import flow from "@/views/system/flow/index";
import withdraw from "@/views/system/withdrawAudit/index";
import user from "@/views/system/user/index";
// import Withdraw from '@/views/system/withdraw/index.vue'
// import RealName from '@/views/ss/realName/index.vue'
@ -301,7 +304,7 @@ import withdraw from "@/views/system/withdrawAudit/index";
export default {
name: 'User/:deptId',
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'],
computed: {
SmUserType() {

View File

@ -265,6 +265,13 @@ export default {
return this.userName === 'admin' ? 21 : 24;
}
},
props: {
// id
deptId: {
type: Number,
default: null,
}
},
data() {
return {
options: [],
@ -333,7 +340,7 @@ export default {
userName: undefined,
phonenumber: undefined,
status: undefined,
deptId: undefined,
deptId: this.deptId,
typeList: "00,03"
},
//
@ -518,6 +525,7 @@ export default {
getDeptTree() {
deptTreeSelect().then(response => {
this.deptOptions = response.data;
});
},
//
@ -611,6 +619,10 @@ export default {
this.open = true;
this.title = "添加用户";
this.form.password = this.initPassword;
if(this.deptId){
this.form.deptId=this.deptId
}
});
},
/** 修改按钮操作 */