f95ccf4e by xukangle

fix:上架分页加上数交所名称

1 parent e855b9c0
......@@ -68,16 +68,17 @@ const tableInfo = ref({
id: "mapping-table",
fields: [
{ label: "序号", type: "index", width: 56, align: "center", fixed: "left" },
{ label: "数据产品编号", field: "damCode", width: 200 },
{ label: "数据产品名称", field: "damName", width: 200 },
{ label: "数据产品编号", field: "damCode", width: 180 },
{ label: "数据产品名称", field: "damName", width: 180 },
{
label: "产品类型", field: "damTypeName", width: 160
label: "产品类型", field: "damTypeName", width: 100
},
{
label: "是否公共数据", field: "isPublicData", width: 120, getName: (scope) => {
return scope.row.isPublicData == 'Y' ? '是' : '否';
}
},
{ label: "数交所名称", field: "exchangeName", width: 140 },
{
label: "审核状态", field: "approveState", width: TableColumnWidth.STATE, align: 'center', type: "tag", getName: (scope) => {
const approveVO = scope.row.approveVO || {}
......
......@@ -180,7 +180,7 @@ const toSearch = (val: any, clear: boolean = false) => {
} else {
page.value.daName = val.daName;
}
tableRef.value.columnInfo = {}
tableInfo.value.isEdit = false
getTableData();
};
......
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!