2021-10-20 14:32:09 +08:00
|
|
|
<template>
|
|
|
|
<div>
|
|
|
|
<!--引用表格-->
|
|
|
|
<BasicTable @register="registerTable" :rowSelection="rowSelection">
|
|
|
|
<!--插槽:table标题-->
|
|
|
|
<template #tableTitle>
|
2022-03-10 09:47:29 +08:00
|
|
|
<a-button type="primary" preIcon="ant-design:plus-outlined" v-auth="'user:add'" @click="handleCreate" > 新增</a-button>
|
|
|
|
<a-button type="primary" preIcon="ant-design:export-outlined" @click="onExportXls"> 导出</a-button>
|
|
|
|
<j-upload-button type="primary" preIcon="ant-design:import-outlined" @click="onImportXls">导入</j-upload-button>
|
|
|
|
<a-button type="primary" @click="handleSyncUser" preIcon="ant-design:sync-outlined"> 同步流程</a-button>
|
|
|
|
<a-button type="primary" @click="openModal(true,{})" preIcon="ant-design:hdd-outlined"> 回收站</a-button>
|
|
|
|
<JThirdAppButton biz-type="user" :selected-row-keys="selectedRowKeys" syncToApp syncToLocal @sync-finally="onSyncFinally"/>
|
|
|
|
<a-button type="primary" preIcon="ant-design:filter-outlined"> 高级查询?</a-button>
|
|
|
|
<a-dropdown v-if="selectedRowKeys.length > 0">
|
2021-10-20 14:32:09 +08:00
|
|
|
<template #overlay>
|
|
|
|
<a-menu>
|
|
|
|
<a-menu-item key="1" @click="batchHandleDelete">
|
|
|
|
<Icon icon="ant-design:delete-outlined"></Icon>
|
|
|
|
删除
|
|
|
|
</a-menu-item>
|
2022-03-10 09:47:29 +08:00
|
|
|
<a-menu-item key="2" @click="batchFrozen(2)">
|
|
|
|
<Icon icon="ant-design:lock-outlined"></Icon>
|
|
|
|
冻结
|
|
|
|
</a-menu-item>
|
|
|
|
<a-menu-item key="3" @click="batchFrozen(1)">
|
|
|
|
<Icon icon="ant-design:unlock-outlined"></Icon>
|
|
|
|
解冻
|
|
|
|
</a-menu-item>
|
2021-10-20 14:32:09 +08:00
|
|
|
</a-menu>
|
|
|
|
</template>
|
|
|
|
<a-button>批量操作
|
2022-03-10 09:47:29 +08:00
|
|
|
<Icon icon="mdi:chevron-down"></Icon>
|
2021-10-20 14:32:09 +08:00
|
|
|
</a-button>
|
|
|
|
</a-dropdown>
|
|
|
|
</template>
|
|
|
|
<!--操作栏-->
|
|
|
|
<template #action="{ record }">
|
2022-03-10 09:47:29 +08:00
|
|
|
<TableAction :actions="getTableAction(record)" :dropDownActions="getDropDownAction(record)"/>
|
2021-10-20 14:32:09 +08:00
|
|
|
</template>
|
|
|
|
</BasicTable>
|
|
|
|
<!--用户抽屉-->
|
|
|
|
<UserDrawer @register="registerDrawer" @success="handleSuccess"/>
|
2022-03-10 09:47:29 +08:00
|
|
|
<!--修改密码-->
|
|
|
|
<PasswordModal @register="registerPasswordModal" @success="reload"/>
|
|
|
|
<!--用户代理-->
|
|
|
|
<UserAgentModal @register="registerAgentModal" @success="reload"/>
|
2021-10-20 14:32:09 +08:00
|
|
|
<!--回收站-->
|
2022-03-10 09:47:29 +08:00
|
|
|
<UserRecycleBinModal @register="registerModal" @success="reload"/>
|
2021-10-20 14:32:09 +08:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
2022-03-10 09:47:29 +08:00
|
|
|
<script lang="ts" name="system-user" setup>
|
2021-10-20 14:32:09 +08:00
|
|
|
//ts语法
|
2022-03-10 09:47:29 +08:00
|
|
|
import {ref, computed, unref} from 'vue';
|
|
|
|
import { BasicTable, TableAction, ActionItem } from '/@/components/Table'
|
2021-10-20 14:32:09 +08:00
|
|
|
import UserDrawer from './UserDrawer.vue';
|
|
|
|
import UserRecycleBinModal from './UserRecycleBinModal.vue';
|
2022-03-10 09:47:29 +08:00
|
|
|
import PasswordModal from './PasswordModal.vue';
|
|
|
|
import UserAgentModal from './UserAgentModal.vue';
|
|
|
|
import JThirdAppButton from '/@/components/jeecg/thirdApp/JThirdAppButton.vue'
|
|
|
|
import {useDrawer} from '/@/components/Drawer';
|
|
|
|
import { useListPage } from '/@/hooks/system/useListPage'
|
|
|
|
import {useModal} from '/@/components/Modal';
|
|
|
|
import {useMessage} from '/@/hooks/web/useMessage';
|
2021-10-20 14:32:09 +08:00
|
|
|
import {columns, searchFormSchema} from './user.data';
|
2022-03-10 09:47:29 +08:00
|
|
|
import {list, deleteUser, batchDeleteUser, getImportUrl,getExportUrl, frozenBatch, syncUser} from './user.api';
|
|
|
|
// import { usePermission } from '/@/hooks/web/usePermission'
|
|
|
|
// const { hasPermission } = usePermission();
|
|
|
|
|
|
|
|
const {createMessage, createConfirm} = useMessage();
|
|
|
|
|
|
|
|
const selectRows = ref([]);
|
2021-10-20 14:32:09 +08:00
|
|
|
//注册drawer
|
|
|
|
const [registerDrawer, {openDrawer}] = useDrawer();
|
2022-03-10 09:47:29 +08:00
|
|
|
//回收站model
|
2021-10-20 14:32:09 +08:00
|
|
|
const [registerModal, {openModal}] = useModal();
|
2022-03-10 09:47:29 +08:00
|
|
|
//密码model
|
|
|
|
const [registerPasswordModal, {openModal: openPasswordModal}] = useModal();
|
|
|
|
//代理人model
|
|
|
|
const [registerAgentModal, {openModal: openAgentModal}] = useModal();
|
|
|
|
|
|
|
|
|
|
|
|
// 列表页面公共参数、方法
|
|
|
|
const { prefixCls,tableContext,onExportXls,onImportXls } = useListPage({
|
|
|
|
designScope: 'user-list',
|
|
|
|
tableProps: {
|
|
|
|
title: '用户列表',
|
|
|
|
api: list,
|
|
|
|
columns: columns,
|
|
|
|
size: 'small',
|
|
|
|
formConfig: {
|
|
|
|
labelWidth:200,
|
|
|
|
schemas: searchFormSchema,
|
|
|
|
},
|
|
|
|
actionColumn: {
|
|
|
|
width: 120,
|
|
|
|
},
|
|
|
|
beforeFetch:(params)=>{
|
|
|
|
return Object.assign({'column':'createTime','order':"desc"},params)
|
|
|
|
},
|
2021-10-20 14:32:09 +08:00
|
|
|
},
|
2022-03-10 09:47:29 +08:00
|
|
|
exportConfig: {
|
|
|
|
name:"用户列表",
|
|
|
|
url: getExportUrl,
|
|
|
|
},
|
|
|
|
importConfig: {
|
|
|
|
url: getImportUrl
|
2021-10-20 14:32:09 +08:00
|
|
|
},
|
|
|
|
})
|
|
|
|
|
2022-03-10 09:47:29 +08:00
|
|
|
|
|
|
|
//注册table数据
|
|
|
|
const [registerTable, {reload, updateTableDataRecord},{ rowSelection, selectedRowKeys }] = tableContext
|
|
|
|
|
|
|
|
|
2021-10-20 14:32:09 +08:00
|
|
|
/**
|
|
|
|
* 新增事件
|
|
|
|
*/
|
|
|
|
function handleCreate() {
|
|
|
|
openDrawer(true, {
|
|
|
|
isUpdate: false,
|
2022-03-10 09:47:29 +08:00
|
|
|
showFooter: true,
|
2021-10-20 14:32:09 +08:00
|
|
|
});
|
|
|
|
}
|
|
|
|
/**
|
|
|
|
* 编辑事件
|
|
|
|
*/
|
|
|
|
async function handleEdit(record: Recordable) {
|
|
|
|
openDrawer(true, {
|
|
|
|
record,
|
|
|
|
isUpdate: true,
|
2022-03-10 09:47:29 +08:00
|
|
|
showFooter: true,
|
2021-10-20 14:32:09 +08:00
|
|
|
});
|
|
|
|
}
|
|
|
|
/**
|
|
|
|
* 详情
|
|
|
|
*/
|
|
|
|
async function handleDetail(record: Recordable) {
|
|
|
|
openDrawer(true, {
|
|
|
|
record,
|
|
|
|
isUpdate: true,
|
2022-03-10 09:47:29 +08:00
|
|
|
showFooter: false,
|
2021-10-20 14:32:09 +08:00
|
|
|
});
|
|
|
|
}
|
|
|
|
/**
|
|
|
|
* 删除事件
|
|
|
|
*/
|
|
|
|
async function handleDelete(record) {
|
2022-03-10 09:47:29 +08:00
|
|
|
if ('admin' == record.username) {
|
|
|
|
createMessage.warning('管理员账号不允许此操作!');
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
await deleteUser({id: record.id}, reload);
|
2021-10-20 14:32:09 +08:00
|
|
|
}
|
|
|
|
/**
|
|
|
|
* 批量删除事件
|
|
|
|
*/
|
|
|
|
async function batchHandleDelete() {
|
2022-03-10 09:47:29 +08:00
|
|
|
let hasAdmin = unref(selectRows).filter(item => item.username == 'admin');
|
|
|
|
if (unref(hasAdmin).length > 0) {
|
|
|
|
createMessage.warning('管理员账号不允许此操作!');
|
|
|
|
return;
|
2021-10-20 14:32:09 +08:00
|
|
|
}
|
2022-03-10 09:47:29 +08:00
|
|
|
await batchDeleteUser({ ids: selectedRowKeys.value }, () => {
|
|
|
|
selectedRowKeys.value = []
|
|
|
|
reload()
|
|
|
|
})
|
2021-10-20 14:32:09 +08:00
|
|
|
}
|
|
|
|
/**
|
|
|
|
* 成功回调
|
|
|
|
*/
|
|
|
|
function handleSuccess({isUpdate, values}) {
|
|
|
|
if (isUpdate) {
|
2022-03-10 09:47:29 +08:00
|
|
|
updateTableDataRecord(values.id, values);
|
2021-10-20 14:32:09 +08:00
|
|
|
} else {
|
|
|
|
reload();
|
|
|
|
}
|
|
|
|
}
|
2022-03-10 09:47:29 +08:00
|
|
|
|
2021-10-20 14:32:09 +08:00
|
|
|
/**
|
2022-03-10 09:47:29 +08:00
|
|
|
* 打开修改密码弹窗
|
2021-10-20 14:32:09 +08:00
|
|
|
*/
|
2022-03-10 09:47:29 +08:00
|
|
|
function handleChangePassword(username){
|
|
|
|
openPasswordModal(true, {username});
|
|
|
|
}
|
|
|
|
/**
|
|
|
|
* 打开代理人弹窗
|
|
|
|
*/
|
|
|
|
function handleAgentSettings(userName){
|
|
|
|
openAgentModal(true, {userName});
|
|
|
|
}
|
|
|
|
/**
|
|
|
|
* 冻结解冻
|
|
|
|
*/
|
|
|
|
async function handleFrozen(record,status){
|
|
|
|
if ('admin' == record.username) {
|
|
|
|
createMessage.warning('管理员账号不允许此操作!');
|
|
|
|
return;
|
2021-10-20 14:32:09 +08:00
|
|
|
}
|
2022-03-10 09:47:29 +08:00
|
|
|
await frozenBatch({ids: record.id, status: status},reload)
|
2021-10-20 14:32:09 +08:00
|
|
|
}
|
2022-03-10 09:47:29 +08:00
|
|
|
/**
|
|
|
|
* 批量冻结解冻
|
|
|
|
*/
|
|
|
|
function batchFrozen(status) {
|
|
|
|
let hasAdmin = unref(selectRows).filter(item => item.username == 'admin');
|
|
|
|
if (unref(hasAdmin).length > 0) {
|
|
|
|
createMessage.warning('管理员账号不允许此操作!');
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
createConfirm({
|
|
|
|
iconType: 'warning',
|
|
|
|
title: '确认操作',
|
|
|
|
content: "是否" + (status == 1 ? "解冻" : "冻结") + "选中账号?",
|
|
|
|
onOk: async () => {
|
|
|
|
await frozenBatch({ids: unref(selectedRowKeys).join(','), status: status}, reload)
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
*同步流程
|
|
|
|
*/
|
|
|
|
function handleSyncUser() {
|
|
|
|
syncUser()
|
|
|
|
}
|
|
|
|
/**
|
|
|
|
*同步钉钉和微信回调
|
|
|
|
*/
|
|
|
|
function onSyncFinally({isToLocal}) {
|
|
|
|
// 同步到本地时刷新下数据
|
|
|
|
if (isToLocal) {
|
|
|
|
reload()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-10-20 14:32:09 +08:00
|
|
|
/**
|
|
|
|
* 操作栏
|
|
|
|
*/
|
2022-03-10 09:47:29 +08:00
|
|
|
function getTableAction(record): ActionItem[] {
|
2021-10-20 14:32:09 +08:00
|
|
|
return [
|
|
|
|
{
|
2022-03-10 09:47:29 +08:00
|
|
|
label: '编辑',
|
2021-10-20 14:32:09 +08:00
|
|
|
onClick: handleEdit.bind(null, record),
|
2022-03-10 09:47:29 +08:00
|
|
|
// ifShow: () => hasPermission('user:edit'),
|
2021-10-20 14:32:09 +08:00
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
/**
|
|
|
|
* 下拉操作栏
|
|
|
|
*/
|
2022-03-10 09:47:29 +08:00
|
|
|
function getDropDownAction(record): ActionItem[] {
|
2021-10-20 14:32:09 +08:00
|
|
|
return [
|
|
|
|
{
|
|
|
|
label: '详情',
|
|
|
|
onClick: handleDetail.bind(null, record),
|
2022-03-10 09:47:29 +08:00
|
|
|
}, {
|
|
|
|
label: '密码',
|
|
|
|
onClick: handleChangePassword.bind(null, record.username),
|
2021-10-20 14:32:09 +08:00
|
|
|
},{
|
|
|
|
label: '删除',
|
|
|
|
popConfirm: {
|
|
|
|
title: '是否确认删除',
|
|
|
|
confirm: handleDelete.bind(null, record),
|
|
|
|
},
|
2022-03-10 09:47:29 +08:00
|
|
|
},{
|
|
|
|
label: '冻结',
|
|
|
|
ifShow:record.status==1,
|
|
|
|
popConfirm: {
|
|
|
|
title: '确定冻结吗?',
|
|
|
|
confirm: handleFrozen.bind(null, record,2),
|
|
|
|
},
|
|
|
|
},{
|
|
|
|
label: '解冻',
|
|
|
|
ifShow:record.status==2,
|
|
|
|
popConfirm: {
|
|
|
|
title: '确定解冻吗?',
|
|
|
|
confirm: handleFrozen.bind(null, record,1),
|
|
|
|
},
|
|
|
|
}, {
|
|
|
|
label: '代理人',
|
|
|
|
onClick: handleAgentSettings.bind(null, record.username),
|
2021-10-20 14:32:09 +08:00
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style scoped>
|
|
|
|
|
|
|
|
</style>
|