index.vue 4.78 KB
<template>
  <div>
    <PageWrapper dense contentFullHeight contentClass="flex">
      <OrganizationIdTree @select="handleSelect" ref="organizationIdTreeRef" />
      <BasicTable
        style="flex: auto"
        @register="registerTable"
        :searchInfo="searchInfo"
        class="w-3/4 xl:w-4/5"
      >
        <template #toolbar>
          <Authority value="api:yt:alarmContact:post">
            <a-button type="primary" @click="handleCreateOrEdit(null)">
              {{ t('monitor.alarm.contacts.createButton') }}
            </a-button>
          </Authority>
          <Authority value="api:yt:alarmContact:delete">
            <Popconfirm
              :title="t('common.batchDeleteConfirmText')"
              @confirm="handleDeleteOrBatchDelete(null)"
            >
              <a-button type="primary" color="error" :disabled="hasBatchDelete">
                {{ t('common.batchdelText') }}
              </a-button>
            </Popconfirm>
          </Authority>
        </template>
        <template #action="{ record }">
          <TableAction
            :actions="[
              {
                label: t('common.editText'),
                auth: 'api:yt:alarmContact:update:update',
                icon: 'clarity:note-edit-line',
                onClick: handleCreateOrEdit.bind(null, record),
              },
              {
                label: t('common.delText'),
                auth: 'api:yt:alarmContact:delete',
                icon: 'ant-design:delete-outlined',
                color: 'error',
                popConfirm: {
                  title: t('common.isDelete'),
                  confirm: handleDeleteOrBatchDelete.bind(null, record),
                },
              },
            ]"
          />
        </template>
      </BasicTable>
    </PageWrapper>
    <ContactDrawer @register="registerDrawer" @success="handleSuccess" />
  </div>
</template>

<script lang="ts">
  import { defineComponent, reactive, nextTick } from 'vue';
  import { BasicTable, useTable, TableAction } from '/@/components/Table';
  import { PageWrapper } from '/@/components/Page';
  import { useDrawer } from '/@/components/Drawer';
  import ContactDrawer from './ContactDrawer.vue';
  import { useResetOrganizationTree, OrganizationIdTree } from '/@/views/common/organizationIdTree';
  import { useBatchDelete } from '/@/hooks/web/useBatchDelete';
  import { getAlarmContact, deleteAlarmContact } from '/@/api/alarm/contact/alarmContact';
  import { searchFormSchema, columns } from './config.data';
  import { Authority } from '/@/components/Authority';
  import { Popconfirm } from 'ant-design-vue';
  import { useI18n } from '/@/hooks/web/useI18n';

  export default defineComponent({
    components: {
      PageWrapper,
      OrganizationIdTree,
      BasicTable,
      TableAction,
      ContactDrawer,
      Authority,
      Popconfirm,
    },
    setup() {
      const { t } = useI18n();
      const searchInfo = reactive<Recordable>({});
      const { organizationIdTreeRef, resetFn } = useResetOrganizationTree(searchInfo);
      // 表格hooks
      const [registerTable, { reload, setProps }] = useTable({
        title: t('monitor.alarm.contacts.table.title'),
        api: getAlarmContact,
        clickToRowSelect: false,
        columns,
        formConfig: {
          labelWidth: 120,
          schemas: searchFormSchema,
          resetFunc: resetFn,
        },
        useSearchForm: true,
        showTableSetting: true,
        bordered: true,
        rowKey: 'id',
        actionColumn: {
          width: 200,
          title: t('common.actionText'),
          dataIndex: 'action',
          slots: { customRender: 'action' },
          fixed: 'right',
        },
      });
      const { hasBatchDelete, handleDeleteOrBatchDelete, selectionOptions } = useBatchDelete(
        deleteAlarmContact,
        handleSuccess,
        setProps
      );
      nextTick(() => {
        setProps(selectionOptions);
      });
      // 弹框
      const [registerDrawer, { openDrawer }] = useDrawer();
      // 刷新
      function handleSuccess() {
        reload();
      }
      // 新增或编辑
      const handleCreateOrEdit = (record: Recordable | null) => {
        if (record) {
          openDrawer(true, {
            isUpdate: true,
            record,
          });
        } else {
          openDrawer(true, {
            isUpdate: false,
          });
        }
      };
      // 树形选择器
      const handleSelect = (organizationId: string) => {
        searchInfo.organizationId = organizationId;
        handleSuccess();
      };
      return {
        searchInfo,
        hasBatchDelete,
        handleCreateOrEdit,
        handleDeleteOrBatchDelete,
        handleSelect,
        handleSuccess,
        registerTable,
        registerDrawer,
        organizationIdTreeRef,
        t,
      };
    },
  });
</script>