Commit ee682445 authored by TZW's avatar TZW

111

parent c042b64d
...@@ -102,7 +102,7 @@ function getcolumns(ifs, actionRef) { ...@@ -102,7 +102,7 @@ function getcolumns(ifs, actionRef) {
title: '状态', title: '状态',
dataIndex: 'status', dataIndex: 'status',
key: 'status', key: 'status',
valueType: 'radio', valueType: 'select',
search: false, search: false,
formItemProps: { formItemProps: {
rules: [ rules: [
......
...@@ -48,7 +48,9 @@ function getcolumns(setdrawer) { ...@@ -48,7 +48,9 @@ function getcolumns(setdrawer) {
path: '/sparepart/sparePartSupplier/queryOnSelect', path: '/sparepart/sparePartSupplier/queryOnSelect',
params: {}, params: {},
}, },
render: (text, row) => row?.supplierNo + '/' + row?.supplierName, render: (text, row) => {
return row?.supplierNo || '--' + '/' + row?.supplierName;
},
}, },
{ {
title: '入库数量', 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