index.vue 5.22 KB
<template>
  <div class="p-4">
    <BasicTable :clickToRowSelect="false" @register="registerTable" @fetch-success="onFetchSuccess">
      <template #toolbar>
        <Authority value="api:yt:organization:post">
          <a-button type="primary" @click="handleCreate">
            {{ getI18n }}
          </a-button>
        </Authority>
        <Authority value="api:yt:organization:delete">
          <Popconfirm
            :title="t('common.batchDeleteConfirmText')"
            :ok-text="t('common.okText')"
            :cancel-text="t('common.cancelText')"
            @confirm="handleDeleteOrBatchDelete(null)"
          >
            <a-button color="error" :disabled="hasBatchDelete">
              {{ t('common.batchDeleteText') }}
            </a-button>
          </Popconfirm>
        </Authority>
      </template>
      <template #action="{ record }">
        <TableAction
          :actions="[
            {
              label: t('common.editText'),
              auth: 'api:yt:organization:update',
              icon: 'clarity:note-edit-line',
              disabled: record.isRoot && getIsChildTenant,
              onClick: handleEdit.bind(null, record),
            },
            {
              label: t('common.delText'),
              auth: 'api:yt:organization:delete',
              icon: 'ant-design:delete-outlined',
              color: 'error',
              disabled: record.isRoot && getIsChildTenant,
              popConfirm: {
                title: getDeleteTitle(), //是否确认删除//getDeleteTitle()
                confirm: handleDeleteOrBatchDelete.bind(null, record),
              },
            },
          ]"
        />
      </template>
    </BasicTable>
    <DeptDrawer @register="registerModal" @success="handleSuccess" />
  </div>
</template>
<script lang="ts">
  import { computed, defineComponent, nextTick, unref } from 'vue';
  import { BasicTable, useTable, TableAction } from '/@/components/Table';
  // 加载自定义侧边弹出框 组件
  import { useDrawer } from '/@/components/Drawer';
  import DeptDrawer from './OrganizationDrawer.vue';
  import { columns } from './organization.data';
  import { useI18n } from '/@/hooks/web/useI18n';
  import { delOrganization, getOrganizationList } from '/@/api/system/system';
  import { useBatchDelete } from '/@/hooks/web/useBatchDelete';
  import { Authority } from '/@/components/Authority';
  import { Popconfirm } from 'ant-design-vue';
  import { getJwtToken } from '/@/utils/auth';
  import jwtDecode from 'jwt-decode';

  export default defineComponent({
    name: 'DeptManagement',
    components: { BasicTable, DeptDrawer, TableAction, Authority, Popconfirm },
    setup() {
      const [registerModal, { openDrawer }] = useDrawer();
      const { t } = useI18n(); // 加载国际化
      const getI18n = computed(() => t('routes.common.organization.toolCreateOrganization'));

      const getIsChildTenant = computed(() => {
        const token = getJwtToken();
        return !!(jwtDecode(token as string) as Recordable)?.isCommonTenant;
      });

      const [registerTable, { reload, expandAll, setProps }] = useTable({
        title: t('routes.common.organization.toolOrganizationList'),
        api: getOrganizationList,
        columns,
        isTreeTable: true,
        pagination: false,
        striped: false,
        useSearchForm: false,
        showTableSetting: true,
        bordered: true,
        showIndexColumn: false,
        afterFetch: (data: Recordable[]) => {
          if (data && data.length) {
            data.forEach((item) => {
              item.isRoot = true;
            });
          }
          return data;
        },
        actionColumn: {
          width: 200,
          title: t('routes.common.common.operation'), //操作
          dataIndex: 'action',
          slots: { customRender: 'action' },
          fixed: 'right',
        },
      });

      const { hasBatchDelete, handleDeleteOrBatchDelete, selectionOptions } = useBatchDelete(
        delOrganization,
        handleSuccess,
        setProps
      );
      nextTick(() => {
        setProps({
          ...selectionOptions,
          rowSelection: {
            ...selectionOptions.rowSelection,
            getCheckboxProps: (data) => {
              return { disabled: data?.isRoot && unref(getIsChildTenant) };
            },
          },
        });
      });
      /**
       * 获得删除提示框的文字
       */
      function getDeleteTitle(): string {
        let labelText = t('routes.common.system.pageSystemTitleWhetherDelete');
        return labelText;
      }

      function handleCreate() {
        openDrawer(true, {
          isUpdate: false,
        });
      }

      function handleEdit(record: Recordable) {
        openDrawer(true, {
          record,
          isUpdate: true,
        });
      }

      function handleSuccess() {
        reload();
      }

      function onFetchSuccess() {
        // 演示默认展开所有表项
        nextTick(expandAll);
      }

      return {
        getIsChildTenant,
        getI18n,
        registerTable,
        registerModal,
        getDeleteTitle,
        handleCreate,
        handleEdit,
        handleSuccess,
        onFetchSuccess,
        hasBatchDelete,
        handleDeleteOrBatchDelete,
        t,
      };
    },
  });
</script>