feat:组盘PC

This commit is contained in:
2026-07-21 14:57:03 +08:00
parent 736618cefa
commit 6380b93774
4 changed files with 29 additions and 3 deletions

View File

@@ -20,6 +20,8 @@ export namespace WmsGroupPlateApi {
extDtlCode: string; // 来源单据明细号
md5: string; // md5
materialCode?: string; // 物料编码
creatorName?: string; // 创建者名称
updaterName?: string; // 更新者名称
}
}

View File

@@ -272,6 +272,10 @@ export function useGridColumns(): VxeTableGridOptions<WmsGroupPlateApi.GroupPlat
field: 'status',
title: '状态',
minWidth: 120,
cellRender: {
name: 'CellDict',
props: { type: DICT_TYPE.WMS_GROUP_PLATE_STATUS },
},
},
{
field: 'materialId',
@@ -324,7 +328,7 @@ export function useGridColumns(): VxeTableGridOptions<WmsGroupPlateApi.GroupPlat
minWidth: 120,
},
{
field: 'creator',
field: 'creatorName',
title: '创建者',
minWidth: 120,
},
@@ -335,7 +339,7 @@ export function useGridColumns(): VxeTableGridOptions<WmsGroupPlateApi.GroupPlat
formatter: 'formatDateTime',
},
{
field: 'updater',
field: 'updaterName',
title: '更新者',
minWidth: 120,
},