fix:上架分页加上数交所名称
Showing
2 changed files
with
5 additions
and
4 deletions
| ... | @@ -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 | }; | ... | ... |
-
Please register or sign in to post a comment