修改页面展示字段-供应商启用停用
This commit is contained in:
parent
4f0bd551c1
commit
b2842e3330
|
|
@ -50,23 +50,23 @@ export const columns: BasicColumn[] = [
|
|||
align: "center",
|
||||
dataIndex: 'openingBankNo'
|
||||
},
|
||||
{
|
||||
title: '状态',
|
||||
align: "center",
|
||||
dataIndex: 'izEnabled',
|
||||
width: 100,
|
||||
customRender: ({ text }) => {
|
||||
let ret = "";
|
||||
if(text == 'Y') {
|
||||
ret = "启用";
|
||||
} else if(text == 'N') {
|
||||
ret = "停用";
|
||||
} else {
|
||||
ret = "未合作";
|
||||
}
|
||||
return ret;
|
||||
}
|
||||
},
|
||||
// {
|
||||
// title: '状态',
|
||||
// align: "center",
|
||||
// dataIndex: 'izEnabled',
|
||||
// width: 100,
|
||||
// customRender: ({ text }) => {
|
||||
// let ret = "";
|
||||
// if(text == 'Y') {
|
||||
// ret = "启用";
|
||||
// } else if(text == 'N') {
|
||||
// ret = "停用";
|
||||
// } else {
|
||||
// ret = "未合作";
|
||||
// }
|
||||
// return ret;
|
||||
// }
|
||||
// },
|
||||
// {
|
||||
// title: '营业执照',
|
||||
// align: "center",
|
||||
|
|
|
|||
Loading…
Reference in New Issue