Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: 修改组织管理 #698

Merged
merged 11 commits into from
Mar 20, 2025
2 changes: 1 addition & 1 deletion src/locales/lang/zh.json
Original file line number Diff line number Diff line change
Expand Up @@ -389,7 +389,7 @@
"Department.util.780026-8": "操作",
"Department.util.780026-9": "职位",
"user.index.252066-0": "绑定用户",
"user.index.252066-1": "确认解除绑定?用户拒的相关职位信息也将同步清空",
"user.index.252066-1": "确认解除绑定?用户的相关职位信息也将同步清空",
"user.index.252066-2": "批量解绑",
"user.index.252066-3": "正常",
"user.index.252066-4": "禁用",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
@ok="confirm"
@cancel="emits('close')"
>
<pro-search type="simple" :columns="bindUserColumns" target="category" @search="onSearch" />
<div class="table">
<pro-search style="padding: 0" type="simple" :columns="bindUserColumns" target="category" @search="onSearch" />
<div class="table" style="height: 450px">
<j-pro-table
ref="tableRef"
mode="TABLE"
Expand All @@ -25,7 +25,7 @@
:defaultParams="{
sorts: [{ name: 'createTime', order: 'desc' }],
}"
:scroll="{ y: 500 }"
style="padding: 0"
/>
</div>
</a-modal>
Expand Down
1 change: 1 addition & 0 deletions src/views/system/Department/user/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -223,6 +223,7 @@ const unBind = (row?: any) => {
if (resp.success) {
onlyMessage($t('user.index.252066-6'))
refresh()
_selectedRowKeys.value = []
}
})
}
Expand Down