123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371 |
- <template>
- <CollapseContainer
- class="sys-container"
- title="账户管理"
- :canExpan="false"
- helpMessage="账户管理"
- >
- <BasicTable
- ref="tableRef"
- @register="registerTable"
- rowKey="id"
- @selectionChange="selectionChange"
- @rowClick="rowClick"
- @rowDbClick="handleEdit"
- showTableSetting
- :canResize="true"
- :pagination="{
- pageSize: 10,
- defaultPageSize: 10,
- showSizeChanger: false,
- }"
- >
- <template #toolbar>
- <div class="tool-btn-wrap">
- <a-button type="primary" @click="handleAdd"> 添加 </a-button>
- <a-button color="error" :disabled="disable_btn" @click="deleteBatches"> 删除 </a-button>
- <a-button @click="openModal"> 导出 </a-button>
- </div>
- </template>
- <template #form-custom> custom-slot </template>
- <template #action="{ record }">
- <TableAction :actions="createActions(record)" stopButtonPropagation />
- </template>
- </BasicTable>
- <ExpExcelModel @register="register" @success="defaultHeader" />
- <Popup @register="addRegister" :popupData="popupData" @saveData="saveData" />
- <Info @register="infoRegister" />
- </CollapseContainer>
- </template>
- <script lang="ts">
- import { defineComponent, reactive, ref, toRefs, unref, createVNode } from 'vue';
- import { CollapseContainer } from '/@/components/Container/index';
- import Popup from './popup.vue';
- import Info from './info.vue';
- import { useMessage } from '/@/hooks/web/useMessage';
- import { useModal } from '/@/components/Modal';
- import { jsonToSheetXlsx, ExpExcelModel, ExportModalResult } from '/@/components/Excel';
- import { Modal } from 'ant-design-vue';
- import { ExclamationCircleOutlined } from '@ant-design/icons-vue';
- import { getFormConfig, columns } from './data';
- import moment from 'moment';
- import {
- getAccountList,
- addAccount,
- deleteBatchesAccount,
- getAccount,
- getAccountRecordList,
- editAccount,
- deleteAccount,
- } from '/@/api/sys/money';
- import {
- BasicTable,
- useTable,
- TableAction,
- ActionItem,
- EditRecordRow,
- TableActionType,
- } from '/@/components/Table';
- interface PopupData {
- title: string;
- }
- interface Btn {
- disable_btn: boolean;
- }
- export default defineComponent({
- name: 'Account',
- components: { CollapseContainer, BasicTable, TableAction, Popup, Info, ExpExcelModel },
- setup() {
- const { createMessage } = useMessage();
- const { success /*, error*/ } = createMessage;
- const tableRef = ref<Nullable<TableActionType>>(null);
- const popupData = reactive<PopupData>({
- title: '添加',
- });
- const btn = reactive<Btn>({
- disable_btn: true,
- });
- const [registerTable] = useTable({
- rowSelection: { type: 'checkbox' },
- columns: columns,
- // clickToRowSelect: false, // 点击行不勾选
- api: getAccountList,
- useSearchForm: true,
- tableSetting: {
- redo: false,
- size: false,
- },
- beforeFetch: beforeFetch,
- afterFetch: afterFetch,
- formConfig: getFormConfig(),
- actionColumn: {
- width: 160,
- title: '操作',
- dataIndex: 'action',
- slots: { customRender: 'action' },
- fixed: undefined,
- },
- showIndexColumn: false,
- bordered: true,
- });
- const [register, { openModal }] = useModal();
- const [addRegister, { openModal: openPopup }] = useModal();
- const [infoRegister, { openModal: openInfo }] = useModal();
- function getTableAction() {
- // 获取组件
- const tableAction = unref(tableRef);
- if (!tableAction) {
- throw new Error('tableAction is null');
- }
- return tableAction;
- }
- // 请求之前处理
- function beforeFetch(params) {
- for (let k in params) {
- if (
- k !== 'page' &&
- k !== 'pageSize' &&
- k !== 'field' &&
- k !== 'order' &&
- k !== 'createdate'
- ) {
- if (params[k] === '') {
- delete params[k];
- } else {
- if (!params.filter) {
- params.filter = {};
- }
- if (params.createdate) {
- params.createdate = moment(params.createdate).format('YYYY-MM-DD');
- } else {
- delete params.createdate;
- }
- params.filter[k] = params[k];
- delete params[k];
- }
- }
- }
- params.filter = JSON.stringify(params.filter);
- params.offset = params.page;
- params.limit = params.pageSize;
- delete params.page;
- delete params.pageSize;
- }
- function afterFetch(result) {
- console.log(`result`, result);
- // tableData.result = result;
- }
- function handleAdd() {
- popupData.title = '添加';
- openPopup(true, {});
- }
- async function handleEdit(record: EditRecordRow) {
- popupData.title = '编辑';
- getAccount({ id: record.id }).then((res) => {
- const data = res.row;
- openPopup(true, data);
- });
- }
- async function handleInfo(record: Recordable) {
- popupData.title = '详情';
- getAccountRecordList({ id: record.id }).then((res) => {
- const data = res.list;
- openInfo(true, { info: data });
- });
- }
- async function handleDelete(record: Recordable) {
- console.log(record);
- await deleteAccount({ id: record.id }).then((res) => {
- console.log(res);
- getTableAction().reload();
- success('删除成功!');
- });
- }
- function selectionChange() {
- const keys = getTableAction().getSelectRowKeys();
- if (keys.length) {
- btn.disable_btn = false;
- } else {
- btn.disable_btn = true;
- }
- }
- function rowClick() {
- const keys = getTableAction().getSelectRowKeys();
- if (keys.length) {
- btn.disable_btn = false;
- } else {
- btn.disable_btn = true;
- }
- }
- async function deleteBatches() {
- const keys = await getTableAction().getSelectRowKeys();
- const count = keys.length;
- const ids = keys.toString();
- if (!ids) {
- return;
- }
- Modal.confirm({
- title: '删除提示',
- icon: createVNode(ExclamationCircleOutlined),
- content: '确定删除选中的' + count + '项?',
- okText: '确定',
- okType: 'danger',
- cancelText: '取消',
- maskClosable: true,
- async onOk() {
- await deleteBatchesAccount({ ids }).then((res) => {
- console.log(res);
- getTableAction().reload();
- success('删除成功!');
- getTableAction().setSelectedRowKeys([]);
- });
- },
- onCancel() {
- console.log('Cancel');
- },
- });
- }
- async function saveData(params: any) {
- const data = params.data;
- const closeModel = params.closeModal;
- console.log(`data`, data);
- if (!data.id) {
- await addAccount(data).then((res) => {
- console.log(res);
- getTableAction().reload();
- closeModel();
- success('创建成功!');
- });
- console.log('----------add---');
- } else {
- await editAccount(data).then((res) => {
- console.log(res);
- getTableAction().reload();
- closeModel();
- success('修改成功!');
- });
- console.log('----------edit---');
- }
- }
- function defaultHeader({ filename, bookType }: ExportModalResult) {
- // 默认Object.keys(data[0])作为header
- const jsondata = getTableAction().getDataSource();
- const excelData: object[] = [];
- jsondata.map((item, i) => {
- let data = {
- No: 0,
- id: '',
- name: '',
- amount: '',
- remark: '',
- createtime: '',
- };
- data.No = i + 1;
- data.id = item.id;
- data.name = item.name;
- data.amount = item.amount.toFixed(2);
- data.remark = item.remark;
- data.createtime = moment(item.createtime * 1000).format('YYYY-MM-DD');
- excelData.push(data);
- });
- jsonToSheetXlsx({
- data: excelData,
- header: {
- No: 'No.',
- id: 'ID',
- name: '账户名称',
- amount: '余额',
- remark: '备注',
- createtime: '创建日期',
- },
- filename,
- write2excelOpts: {
- bookType,
- },
- });
- }
- function createActions(record: EditRecordRow): ActionItem[] {
- return [
- {
- label: '详情',
- icon: 'ant-design:info-outlined',
- onClick: handleInfo.bind(null, record),
- },
- {
- label: '编辑',
- icon: 'ant-design:edit-outlined',
- color: 'warning',
- onClick: handleEdit.bind(null, record),
- },
- {
- label: '删除',
- color: 'error',
- icon: 'ic:outline-delete-outline',
- popConfirm: {
- title: '是否确认删除',
- confirm: handleDelete.bind(null, record),
- },
- },
- ];
- }
- return {
- popupData,
- tableRef,
- registerTable,
- handleAdd,
- handleEdit,
- deleteBatches,
- createActions,
- getTableAction,
- rowClick,
- selectionChange,
- addRegister,
- infoRegister,
- saveData,
- defaultHeader,
- openModal,
- register,
- ...toRefs(btn),
- };
- },
- });
- </script>
- <style scoped>
- .ant-calendar-picker {
- width: 100%;
- }
- /* @media (max-width: 639px) {
- .sys-container .vben-basic-table-header__toolbar > * {
- padding: 6px !important;
- margin-right: 3px;
- font-size: 12px !important;
- }
- .sys-container .vben-basic-table .ant-table-wrapper {
- padding: 3px;
- }
- } */
- .vben-basic-table-header__toolbar {
- justify-content: space-between;
- }
- .tool-btn-wrap {
- flex: 1;
- }
- .tool-btn-wrap button {
- margin-right: 5px;
- }
- </style>
|