123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299 |
- <template>
- <div>
- <BasicTable @register="registerTable">
- <template #tableTitle>
- <a-button preIcon="ant-design:plus-outlined" type="primary" @click="handleAdd">新增</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-dropdown v-if="selectedRowKeys.length > 0">
- <template #overlay>
- <a-menu>
- <a-menu-item key="1" @click="batchHandleDelete">
- <Icon icon="ant-design:delete-outlined" />
- 删除
- </a-menu-item>
- </a-menu>
- </template>
- <a-button
- >批量操作
- <Icon style="fontsize: 12px" icon="ant-design:down-outlined" />
- </a-button>
- </a-dropdown> -->
- </template>
- <template #action="{ record }">
- <TableAction :actions="getActions(record)" :dropDownActions="getDropDownAction(record)" />
- </template>
- <template #bodyCell="{ column, record }">
- <slot name="filterCell" v-bind="{ column, record }"></slot>
- </template>
- </BasicTable>
- <DeviceModal @register="registerModal" @saveOrUpdate="saveOrUpdateHandler" :showTab="showTab" :deviceType="deviceType" />
- </div>
- </template>
- <script lang="ts" name="system-user" setup>
- //ts语法
- import { ref, provide, reactive, toRaw, defineExpose } from 'vue';
- import { BasicTable, TableAction } from '/@/components/Table';
- import { useModal } from '/@/components/Modal';
- import DeviceModal from './DeviceModal.vue';
- import { getTableHeaderColumns } from '/@/hooks/web/useWebColumns';
- import { useListPage } from '/@/hooks/system/useListPage';
- const props = defineProps({
- columnsType: {
- type: String,
- // required: true,
- },
- columns: {
- type: Array,
- // required: true,
- default: () => [],
- },
- searchFormSchema: {
- type: Array,
- required: true,
- default: () => [],
- },
- formSchema: {
- type: Array,
- required: true,
- },
- list: {
- type: Function,
- required: true,
- },
- getImportUrl: {
- type: String,
- required: true,
- },
- getExportUrl: {
- type: String,
- required: true,
- },
- deleteById: {
- type: Function,
- required: true,
- },
- batchDelete: {
- type: Function,
- // required: true,
- },
- saveOrUpdate: {
- type: Function,
- required: true,
- },
- pointList: {
- type: Function,
- // required: true,
- },
- showTab: {
- type: Boolean,
- default: false,
- },
- designScope: {
- type: String,
- },
- title: {
- type: String,
- },
- deviceType: {
- type: String,
- },
- });
- const isUpdate = ref(false);
- //lxh
- let dictId = ref(null);
- const record = reactive({});
- provide('formSchema', props.formSchema);
- provide('isUpdate', isUpdate);
- provide('formData', record);
- provide('deviceType', props.deviceType);
- // const glob = useGlobSetting();
- const [registerModal, { openModal, closeModal }] = useModal();
- const columnList = getTableHeaderColumns(props.columnsType);
- // 列表页面公共参数、方法
- const { prefixCls, tableContext, onExportXls, onImportXls, doRequest } = useListPage({
- designScope: props.designScope,
- tableProps: {
- title: props.title, //table标题
- api: props.list, //api请求
- columns: props.columns.length > 0 ? (props.columns as any[]) : columnList, //列信息
- // size: 'small',
- // bordered: false,
- formConfig: {
- //表单配置
- // labelWidth: 100,
- labelAlign: 'left',
- labelCol: {
- xs: 24,
- sm: 24,
- md: 24,
- lg: 9,
- xl: 7,
- xxl: 5,
- },
- schemas: props.searchFormSchema as any[],
- showActionButtonGroup: false,
- },
- striped: true, //斑马纹
- showIndexColumn: false, //是否显示序号列
- actionColumn: {
- //操作列配置
- width: 180,
- },
- beforeFetch: (params) => {
- return Object.assign({ column: 'createTime', order: 'desc' }, params);
- },
- },
- exportConfig: {
- name: props.title,
- url: props.getExportUrl,
- },
- importConfig: {
- url: props.getImportUrl,
- },
- });
- //注册table数据
- const [registerTable, { reload }] = tableContext;
- const saveOrUpdateHandler = async (params) => {
- Object.assign(params, { dictId: dictId.value });
- try {
- await props.saveOrUpdate(params, isUpdate.value);
- !props.showTab ? closeModal() : '';
- await doRequest(props.list, { confirm: false });
- } catch (error) {
- message.error('保存失败,请联系管理员');
- }
- };
- /**
- * 新增事件
- */
- function handleAdd() {
- dictId.value = null;
- for (let key in record) {
- delete record[key];
- }
- isUpdate.value = false;
- openModal(true);
- }
- /**
- * 新增下级
- */
- function handleAdds(data) {
- console.log(data,'添加下级')
- dictId.value = data.subDictId;
- for (let key in record) {
- delete record[key];
- }
- isUpdate.value = false;
- openModal(true);
- }
- /**
- * 编辑事件
- */
- function handleEdit(data) {
- isUpdate.value = true;
- Object.assign(record, toRaw(data));
- openModal(true, {
- record,
- });
- }
- /**
- * 删除事件
- */
- async function handleDelete(record) {
- await props.deleteById({ id: record }, reload);
- }
- /**
- * 批量删除事件
- */
- async function batchHandleDelete() {
- doRequest(() => props.batchDelete({ ids: selectedRowKeys.value }));
- }
- /**
- * 查看
- */
- // function handleDetail(record) {
- // iframeUrl.value = `${glob.uploadUrl}/sys/annountCement/show/${record.id}?token=${getToken()}`;
- // openDetail(true);
- // }
- /**
- * 操作列定义
- * @param record
- */
- function getActions(record) {
- return [
- {
- label: '编辑',
- onClick: handleEdit.bind(null, record),
- },
- {
- label: '新增下级',
- onClick: handleAdds.bind(null, record),
- },
- {
- label: '删除',
- popConfirm: {
- title: '是否确认删除',
- confirm: handleDelete.bind(null, record),
- },
- },
- // {
- // label: '查看',
- // onClick: handleDetail.bind(null, record),
- // },
- ];
- }
- /**
- * 下拉操作栏
- */
- function getDropDownAction(record) {
- return [
- // {
- // label: '删除',
- // popConfirm: {
- // title: '是否确认删除',
- // confirm: handleDelete.bind(null, record),
- // },
- // },
- // {
- // label: '查看',
- // onClick: handleDetail.bind(null, record),
- // },
- ];
- }
- defineExpose({
- doRequest,
- });
- </script>
- <style scoped lang="less">
- @ventSpace: zxm;
- @vent-table-no-hover: #00bfff10;
- :deep(.@{ventSpace}-table-cell-row-hover) {
- background: #264d8833 !important;
- }
- :deep(.@{ventSpace}-table-row-selected) {
- background: #268bc522 !important;
- }
- :deep(.@{ventSpace}-table-tbody > tr > td) {
- background-color: #0dc3ff05;
- }
- :deep(.jeecg-basic-table-row__striped) {
- td {
- background-color: @vent-table-no-hover !important;
- }
- }
- </style>
|