Commit ee682445 authored by TZW's avatar TZW

111

parent c042b64d
......@@ -102,7 +102,7 @@ function getcolumns(ifs, actionRef) {
title: '状态',
dataIndex: 'status',
key: 'status',
valueType: 'radio',
valueType: 'select',
search: false,
formItemProps: {
rules: [
......
......@@ -48,7 +48,9 @@ function getcolumns(setdrawer) {
path: '/sparepart/sparePartSupplier/queryOnSelect',
params: {},
},
render: (text, row) => row?.supplierNo + '/' + row?.supplierName,
render: (text, row) => {
return row?.supplierNo || '--' + '/' + row?.supplierName;
},
},
{
title: '入库数量',
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment