4 天以前 b7eb1da8220f5b72f6891c3c6471ca386604cce4
src/views/mes/md/item/data.ts
@@ -332,31 +332,31 @@
  ];
}
/** 物料选择弹窗搜索表单 */
/** 品种选择弹窗搜索表单 */
export function useItemSelectGridFormSchema(): VbenFormSchema[] {
  return [
    {
      fieldName: 'code',
      label: '物料编码',
      label: '品种编码',
      component: 'Input',
      componentProps: {
        allowClear: true,
        placeholder: '请输入物料编码',
        placeholder: '请输入品种编码',
      },
    },
    {
      fieldName: 'name',
      label: '物料名称',
      label: '品种名称',
      component: 'Input',
      componentProps: {
        allowClear: true,
        placeholder: '请输入物料名称',
        placeholder: '请输入品种名称',
      },
    },
  ];
}
/** 物料选择弹窗列表字段 */
/** 品种选择弹窗列表字段 */
export function useItemSelectGridColumns(
  multiple = true,
): VxeTableGridOptions<MesMdItemApi.Item>['columns'] {
@@ -364,12 +364,12 @@
    { type: multiple ? 'checkbox' : 'radio', width: 50 },
    {
      field: 'code',
      title: '物料编码',
      title: '品种编码',
      width: 180,
    },
    {
      field: 'name',
      title: '物料名称',
      title: '品种名称',
      minWidth: 160,
      align: 'left',
    },
@@ -387,7 +387,7 @@
    },
    {
      field: 'itemOrProduct',
      title: '物料/产品',
      title: '品种/产品',
      width: 110,
      align: 'center',
      cellRender: {