| | |
| | | :columns="columns" |
| | | :dataSource="dataSource" |
| | | :pagination="ipagination" |
| | | :rowClassName="tableRowClass" |
| | | :loading="loading" |
| | | @change="handleTableChange"> |
| | | |
| | |
| | | <script> |
| | | |
| | | import { JeecgListMixin } from '@/mixins/JeecgListMixin' |
| | | import '@/assets/less/TableExpand.less' |
| | | |
| | | export default { |
| | | name: "ABCAssessmentList", |
| | |
| | | this.dataSource=[] |
| | | this.selectedRowKeys=[] |
| | | this.ipagination.current = 1 |
| | | }, |
| | | tableRowClass(record, index) { |
| | | if (record.equipmentImportanceId!==record.finalStandard) { |
| | | return 'primary' |
| | | } |
| | | |
| | | }, |
| | | |
| | | } |
| | | } |
| | | </script> |
| | | <style scoped> |
| | | @import '~@assets/less/common.less' |
| | | <style lang="less" scoped> |
| | | @import '~@assets/less/common.less'; |
| | | /deep/.primary { |
| | | color: rgb(0, 115, 255); |
| | | font-weight: bold; |
| | | } |
| | | </style> |