zhangwencui
2026-07-10 1c1f20aa356e90b59964dda3c0d7d1eb7f7e950f
src/views/mes/md/item/index.vue
@@ -1,149 +1,156 @@
<script lang="ts" setup>
import type { VxeTableGridOptions } from '#/adapter/vxe-table';
import type { MesMdItemApi } from '#/api/mes/md/item';
import type { MesMdItemTypeApi } from '#/api/mes/md/item/type';
  import type { VxeTableGridOptions } from "#/adapter/vxe-table";
  import type { MesMdItemApi } from "#/api/mes/md/item";
  import type { MesMdItemTypeApi } from "#/api/mes/md/item/type";
import { ref } from 'vue';
  import { ref } from "vue";
import { confirm, Page, useVbenModal } from '../../../../packages/effects/common-ui/src';
import { DICT_TYPE } from '../../../../packages/constants/src';
import { getDictLabel } from '../../../../packages/effects/hooks/src';
import { downloadFileFromBlobPart } from '../../../../packages/utils/src';
  import {
    confirm,
    Page,
    useVbenModal,
  } from "../../../../packages/effects/common-ui/src";
  import { DICT_TYPE } from "../../../../packages/constants/src";
  import { getDictLabel } from "../../../../packages/effects/hooks/src";
  import { downloadFileFromBlobPart } from "../../../../packages/utils/src";
import { Button, Card, message } from 'ant-design-vue';
  import { Button, Card, message } from "ant-design-vue";
import { ACTION_ICON, TableAction, useVbenVxeGrid } from '#/adapter/vxe-table';
import {
  deleteItem,
  exportItem,
  getItemPage,
  updateItemStatus,
} from '#/api/mes/md/item';
import { $t } from '#/locales';
import { MdItemTypeTree } from '#/views/mes/md/item/type/components';
import { PrinterLabel } from '#/views/mes/wm/barcode/components';
  import { ACTION_ICON, TableAction, useVbenVxeGrid } from "#/adapter/vxe-table";
  import {
    deleteItem,
    exportItem,
    getItemPage,
    updateItemStatus,
  } from "#/api/mes/md/item";
  import { $t } from "#/locales";
  import { MdItemTypeTree } from "#/views/mes/md/item/type/components";
  import { PrinterLabel } from "#/views/wls/barcode/components";
import { useGridColumns, useGridFormSchema } from './data';
import Form from './modules/form.vue';
import ImportForm from './modules/import-form.vue';
  import { useGridColumns, useGridFormSchema } from "./data";
  import Form from "./modules/form.vue";
  import ImportForm from "./modules/import-form.vue";
const selectedItemTypeId = ref<number>(); // 当前选中的物料分类编号
  const selectedItemTypeId = ref<number>(); // 当前选中的物料分类编号
const [FormModal, formModalApi] = useVbenModal({
  connectedComponent: Form,
  destroyOnClose: true,
});
const [ImportModal, importModalApi] = useVbenModal({
  connectedComponent: ImportForm,
  destroyOnClose: true,
});
/** 刷新表格 */
function handleRefresh() {
  gridApi.query();
}
/** 创建物料 */
function handleCreate() {
  formModalApi.setData({ formType: 'create' }).open();
}
/** 查看物料 */
function handleDetail(row: MesMdItemApi.Item) {
  formModalApi.setData({ id: row.id, formType: 'detail' }).open();
}
/** 编辑物料 */
function handleEdit(row: MesMdItemApi.Item) {
  formModalApi.setData({ id: row.id, formType: 'update' }).open();
}
/** 删除物料 */
async function handleDelete(row: MesMdItemApi.Item) {
  const hideLoading = message.loading({
    content: $t('ui.actionMessage.deleting', [row.name]),
    duration: 0,
  const [FormModal, formModalApi] = useVbenModal({
    connectedComponent: Form,
    destroyOnClose: true,
  });
  try {
    await deleteItem(row.id!);
    message.success($t('ui.actionMessage.deleteSuccess', [row.name]));
  const [ImportModal, importModalApi] = useVbenModal({
    connectedComponent: ImportForm,
    destroyOnClose: true,
  });
  /** 刷新表格 */
  function handleRefresh() {
    gridApi.query();
  }
  /** 创建物料 */
  function handleCreate() {
    formModalApi.setData({ formType: "create" }).open();
  }
  /** 查看物料 */
  function handleDetail(row: MesMdItemApi.Item) {
    formModalApi.setData({ id: row.id, formType: "detail" }).open();
  }
  /** 编辑物料 */
  function handleEdit(row: MesMdItemApi.Item) {
    formModalApi.setData({ id: row.id, formType: "update" }).open();
  }
  /** 删除物料 */
  async function handleDelete(row: MesMdItemApi.Item) {
    const hideLoading = message.loading({
      content: $t("ui.actionMessage.deleting", [row.name]),
      duration: 0,
    });
    try {
      await deleteItem(row.id!);
      message.success($t("ui.actionMessage.deleteSuccess", [row.name]));
      handleRefresh();
    } finally {
      hideLoading();
    }
  }
  /** 导出物料 */
  async function handleExport() {
    const data = await exportItem(await gridApi.formApi.getValues());
    downloadFileFromBlobPart({ fileName: "物料产品.xls", source: data });
  }
  /** 导入物料 */
  function handleImport() {
    importModalApi.open();
  }
  /** 分类树点击 */
  function handleTypeNodeClick(row: MesMdItemTypeApi.ItemType | undefined) {
    selectedItemTypeId.value = row?.id;
    handleRefresh();
  } finally {
    hideLoading();
  }
}
/** 导出物料 */
async function handleExport() {
  const data = await exportItem(await gridApi.formApi.getValues());
  downloadFileFromBlobPart({ fileName: '物料产品.xls', source: data });
}
/** 导入物料 */
function handleImport() {
  importModalApi.open();
}
/** 分类树点击 */
function handleTypeNodeClick(row: MesMdItemTypeApi.ItemType | undefined) {
  selectedItemTypeId.value = row?.id;
  handleRefresh();
}
/** 更新物料状态 */
async function handleStatusChange(
  newStatus: number,
  row: MesMdItemApi.Item,
): Promise<boolean | undefined> {
  try {
    await confirm(
      `确认要将"${row.name}"物料切换为【${getDictLabel(DICT_TYPE.COMMON_STATUS, newStatus)}】吗?`,
    );
  } catch {
    return false;
  /** 更新物料状态 */
  async function handleStatusChange(
    newStatus: number,
    row: MesMdItemApi.Item
  ): Promise<boolean | undefined> {
    try {
      await confirm(
        `确认要将"${row.name}"物料切换为【${getDictLabel(
          DICT_TYPE.COMMON_STATUS,
          newStatus
        )}】吗?`
      );
    } catch {
      return false;
    }
    await updateItemStatus(row.id!, newStatus);
    message.success($t("ui.actionMessage.operationSuccess"));
    return true;
  }
  await updateItemStatus(row.id!, newStatus);
  message.success($t('ui.actionMessage.operationSuccess'));
  return true;
}
const [Grid, gridApi] = useVbenVxeGrid({
  formOptions: {
    schema: useGridFormSchema(),
  },
  gridOptions: {
    columns: useGridColumns(handleStatusChange),
    height: 'auto',
    keepSource: true,
    proxyConfig: {
      ajax: {
        query: async ({ page }, formValues) => {
          return await getItemPage({
            pageNo: page.currentPage,
            pageSize: page.pageSize,
            ...formValues,
            itemTypeId: selectedItemTypeId.value,
          });
  const [Grid, gridApi] = useVbenVxeGrid({
    formOptions: {
      schema: useGridFormSchema(),
    },
    gridOptions: {
      columns: useGridColumns(handleStatusChange),
      height: "auto",
      keepSource: true,
      proxyConfig: {
        ajax: {
          query: async ({ page }, formValues) => {
            return await getItemPage({
              pageNo: page.currentPage,
              pageSize: page.pageSize,
              ...formValues,
              itemTypeId: selectedItemTypeId.value,
            });
          },
        },
      },
    },
    rowConfig: {
      keyField: 'id',
      isHover: true,
    },
    toolbarConfig: {
      refresh: true,
      search: true,
    },
  } as VxeTableGridOptions<MesMdItemApi.Item>,
});
      rowConfig: {
        keyField: "id",
        isHover: true,
      },
      toolbarConfig: {
        refresh: true,
        search: true,
      },
    } as VxeTableGridOptions<MesMdItemApi.Item>,
  });
</script>
<template>
  <Page auto-content-height><FormModal @success="handleRefresh" />
  <Page auto-content-height>
    <FormModal @success="handleRefresh" />
    <ImportModal @success="handleRefresh" />
    <div class="flex h-full w-full">
      <Card class="mr-4 h-full w-1/6">
        <MdItemTypeTree @node-click="handleTypeNodeClick" />
@@ -151,8 +158,7 @@
      <div class="w-5/6">
        <Grid table-title="物料产品列表">
          <template #toolbar-tools>
            <TableAction
              :actions="[
            <TableAction :actions="[
                {
                  label: $t('ui.actionTitle.create', ['物料']),
                  type: 'primary',
@@ -174,18 +180,17 @@
                  auth: ['mes:md-item:export'],
                  onClick: handleExport,
                },
              ]"
            />
              ]" />
          </template>
          <template #code="{ row }">
            <Button type="link" @click="handleDetail(row)">
            <Button type="link"
                    @click="handleDetail(row)">
              {{ row.code }}
            </Button>
          </template>
          <template #actions="{ row }">
            <div class="flex items-center justify-center">
              <TableAction
                :actions="[
              <TableAction :actions="[
                  {
                    label: $t('common.edit'),
                    type: 'link',
@@ -204,13 +209,10 @@
                      confirm: handleDelete.bind(null, row),
                    },
                  },
                ]"
              />
              <PrinterLabel
                :biz-id="row.id"
                :biz-code="row.code"
                biz-type="ITEM"
              />
                ]" />
              <PrinterLabel :biz-id="row.id"
                            :biz-code="row.code"
                            biz-type="ITEM" />
            </div>
          </template>
        </Grid>