gaoluyang
6 小时以前 787ccc59ba89bacc075562a161ecf02bc76ebadc
银川
1.采购申请添加入库状态查询条件
已修改2个文件
17 ■■■■■ 文件已修改
.idea/mom-pro2-before.iml 1 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/erp/purchase/request/data.ts 16 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
.idea/mom-pro2-before.iml
@@ -2,7 +2,6 @@
<module type="WEB_MODULE" version="4">
  <component name="NewModuleRootManager">
    <content url="file://$MODULE_DIR$">
      <excludeFolder url="file://$MODULE_DIR$/node_modules" />
      <excludeFolder url="file://$MODULE_DIR$/.pnpm" />
      <excludeFolder url="file://$MODULE_DIR$/.vite" />
      <excludeFolder url="file://$MODULE_DIR$/.cache" />
src/views/erp/purchase/request/data.ts
@@ -279,6 +279,20 @@
        allowClear: true,
      },
    },
    {
      fieldName: 'inStatus',
      label: '入库状态',
      component: 'Select',
      componentProps: {
        options: [
          { label: '未入库', value: 0 },
          { label: '部分入库', value: 1 },
          { label: '全部入库', value: 2 },
        ],
        placeholder: '请选择入库状态',
        allowClear: true,
      },
    },
  ];
}
@@ -350,12 +364,14 @@
      field: 'status',
      title: '状态',
      minWidth: 120,
      fixed: 'right',
      slots: { default: 'status' },
    },
    {
      field: 'inStatus',
      title: '入库状态',
      minWidth: 100,
      fixed: 'right',
      slots: { default: 'inStatus' },
    },
    {