90d55548 by lihua

修改企业简称

1 parent 157b89c5
......@@ -70,7 +70,8 @@ const tableFields: any = ref([
{ label: "企业名称", field: "param1", width: 200, },
{ label: "企业简称", field: "abbreviation", width: 160, getName: (scope) => {
const param4 = scope.row.param4 || '';
return param4 ? param4.split('_')?.slice(3)?.join('_') : '--'
let v = param4.split('_')?.slice(3);
return v?.length ? v?.join('_') : '--';
} },
{ label: "统一社会信用代码", field: "param3", width: 160 },
{
......
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!