2021-03-01 00:56:25 +08:00
|
|
|
<template>
|
|
|
|
|
<div :class="[prefixCls]">
|
|
|
|
|
<BasicTable @register="registerTable">
|
|
|
|
|
<template #toolbar>
|
|
|
|
|
<a-button type="primary" @click="handleCreateAccount"> 新增账号 </a-button>
|
|
|
|
|
</template>
|
|
|
|
|
<template #action="{ record }">
|
|
|
|
|
<TableAction
|
|
|
|
|
:actions="[
|
|
|
|
|
{
|
2021-03-01 22:54:21 +08:00
|
|
|
icon: 'clarity:note-edit-line',
|
2021-03-01 00:56:25 +08:00
|
|
|
onClick: handleEdit.bind(null, record),
|
|
|
|
|
},
|
|
|
|
|
{
|
2021-03-01 22:54:21 +08:00
|
|
|
icon: 'ant-design:delete-outlined',
|
2021-03-01 00:56:25 +08:00
|
|
|
color: 'error',
|
|
|
|
|
popConfirm: {
|
|
|
|
|
title: '是否确认删除',
|
|
|
|
|
confirm: handleDelete.bind(null, record),
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
]"
|
|
|
|
|
/>
|
|
|
|
|
</template>
|
|
|
|
|
</BasicTable>
|
|
|
|
|
<AccountModal @register="registerModal" />
|
|
|
|
|
</div>
|
|
|
|
|
</template>
|
|
|
|
|
<script lang="ts">
|
|
|
|
|
import { defineComponent } from 'vue';
|
|
|
|
|
|
|
|
|
|
import { useDesign } from '/@/hooks/web/useDesign';
|
|
|
|
|
import { BasicTable, useTable, TableAction } from '/@/components/Table';
|
|
|
|
|
import { getAccountList } from '/@/api/demo/system';
|
|
|
|
|
|
|
|
|
|
import { useModal } from '/@/components/Modal';
|
|
|
|
|
import AccountModal from './AccountModal.vue';
|
|
|
|
|
|
|
|
|
|
import { columns, searchFormSchema } from './account.data';
|
|
|
|
|
|
|
|
|
|
export default defineComponent({
|
|
|
|
|
name: 'AccountManagement',
|
|
|
|
|
components: { BasicTable, AccountModal, TableAction },
|
|
|
|
|
setup() {
|
|
|
|
|
const { prefixCls } = useDesign('account-management');
|
|
|
|
|
|
|
|
|
|
const [registerModal, { openModal }] = useModal();
|
|
|
|
|
const [registerTable] = useTable({
|
|
|
|
|
title: '账号列表',
|
|
|
|
|
api: getAccountList,
|
|
|
|
|
columns,
|
|
|
|
|
formConfig: {
|
|
|
|
|
labelWidth: 120,
|
|
|
|
|
schemas: searchFormSchema,
|
|
|
|
|
},
|
|
|
|
|
useSearchForm: true,
|
|
|
|
|
showTableSetting: true,
|
2021-03-01 22:54:21 +08:00
|
|
|
bordered: true,
|
2021-03-01 00:56:25 +08:00
|
|
|
actionColumn: {
|
2021-03-01 22:54:21 +08:00
|
|
|
width: 80,
|
2021-03-01 00:56:25 +08:00
|
|
|
title: '操作',
|
|
|
|
|
dataIndex: 'action',
|
|
|
|
|
slots: { customRender: 'action' },
|
|
|
|
|
},
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
function handleCreateAccount() {
|
|
|
|
|
openModal(true, {
|
|
|
|
|
isUpdate: false,
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function handleEdit(record: Recordable) {
|
|
|
|
|
openModal(true, {
|
|
|
|
|
record,
|
|
|
|
|
isUpdate: true,
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function handleDelete(record: Recordable) {
|
|
|
|
|
console.log(record);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return {
|
|
|
|
|
prefixCls,
|
|
|
|
|
registerTable,
|
|
|
|
|
registerModal,
|
|
|
|
|
handleCreateAccount,
|
|
|
|
|
handleEdit,
|
|
|
|
|
handleDelete,
|
|
|
|
|
};
|
|
|
|
|
},
|
|
|
|
|
});
|
|
|
|
|
</script>
|
|
|
|
|
<style lang="less" scoped>
|
|
|
|
|
@prefix-cls: ~'@{namespace}-account-management';
|
|
|
|
|
|
|
|
|
|
.@{prefix-cls} {
|
|
|
|
|
display: flex;
|
|
|
|
|
}
|
|
|
|
|
</style>
|