给批次商品选择列表增加单位列

This commit is contained in:
季圣华
2023-04-01 23:26:39 +08:00
parent 426adf2ad6
commit f44a7d6112

View File

@@ -58,7 +58,7 @@
props: ['rows', 'multi', 'barCode'], props: ['rows', 'multi', 'barCode'],
data() { data() {
return { return {
modalWidth: 1000, modalWidth: 1100,
queryParam: { queryParam: {
name: "", name: "",
depotItemId: '', depotItemId: '',
@@ -80,6 +80,7 @@
{dataIndex: 'name', title: '名称', width: 100, ellipsis:true}, {dataIndex: 'name', title: '名称', width: 100, ellipsis:true},
{dataIndex: 'standard', title: '规格', width: 80, ellipsis:true}, {dataIndex: 'standard', title: '规格', width: 80, ellipsis:true},
{dataIndex: 'model', title: '型号', width: 80, ellipsis:true}, {dataIndex: 'model', title: '型号', width: 80, ellipsis:true},
{dataIndex: 'commodityUnit', title: '单位', width: 60, ellipsis:true},
{dataIndex: 'expirationDateStr', title: '有效期至', width: 80}, {dataIndex: 'expirationDateStr', title: '有效期至', width: 80},
{dataIndex: 'totalNum', title: '库存', width: 80} {dataIndex: 'totalNum', title: '库存', width: 80}
], ],