f95ccf4e by xukangle

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

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