Browse Source

修改前端字段展示样式

master_hella_20240701
chenfang 11 months ago
parent
commit
fae81c854b
  1. 39
      src/views/wms/inventoryManage/balance/balance.data.ts

39
src/views/wms/inventoryManage/balance/balance.data.ts

@ -39,6 +39,7 @@ export const Balance = useCrudSchemas(reactive<CrudSchema[]>([
table: { table: {
width: 150 width: 150
}, },
isTable:false
}, },
{ {
label: '数量', label: '数量',
@ -63,55 +64,55 @@ export const Balance = useCrudSchemas(reactive<CrudSchema[]>([
}, },
}, },
{ {
label: '库区类型', label: '库位代码',
field: 'areaType', field: 'locationCode',
sort: 'custom', sort: 'custom',
dictType: DICT_TYPE.AREA_TYPE,
dictClass: 'string',
isTable: true,
table: { table: {
width: 150 width: 150
}, },
isSearch: true,
}, },
{ {
label: '包装规格', label: '库存状态',
field: 'packUnit', field: 'inventoryStatus',
dictType: DICT_TYPE.INVENTORY_STATUS,
dictClass: 'string',
isTable: true,
sort: 'custom', sort: 'custom',
table: { table: {
width: 150 width: 150
}, },
}, },
{ {
label: '包装数量', label: '库区类型',
field: 'packQty', field: 'areaType',
sort: 'custom', sort: 'custom',
dictType: DICT_TYPE.AREA_TYPE,
dictClass: 'string',
isTable: true,
table: { table: {
width: 150 width: 150
}, },
}, },
{ {
label: '库位代码', label: '包装规格',
field: 'locationCode', field: 'packUnit',
sort: 'custom', sort: 'custom',
table: { table: {
width: 150 width: 150
}, },
isSearch: true,
}, },
{ {
label: '仓库代码', label: '包装数量',
field: 'warehouseCode', field: 'packQty',
sort: 'custom', sort: 'custom',
table: { table: {
width: 150 width: 150
}, },
}, },
{ {
label: '库存状态', label: '仓库代码',
field: 'inventoryStatus', field: 'warehouseCode',
dictType: DICT_TYPE.INVENTORY_STATUS,
dictClass: 'string',
isTable: true,
sort: 'custom', sort: 'custom',
table: { table: {
width: 150 width: 150

Loading…
Cancel
Save