| | |
| | | v-loading="tableLoading" |
| | | :border="border" |
| | | :data="tableData" |
| | | :header-cell-style="{ background: '#0e3372', color: '#cccccc' }" |
| | | :header-cell-style="{ background: '#f8f8f9', color: '#515a6e' }" |
| | | :height="height" |
| | | :highlight-current-row="highlightCurrentRow" |
| | | :row-class-name="rowClassName" |
| | |
| | | <pagination |
| | | v-show="page.total>0" |
| | | :total="page.total" |
| | | :page.sync="page.pageNum" |
| | | :limit.sync="page.pageSize" |
| | | :page.sync="page.current" |
| | | :limit.sync="page.size" |
| | | @pagination="pagination" |
| | | /> |
| | | </div> |
| | |
| | | }, |
| | | border: { |
| | | type: Boolean, |
| | | default: true |
| | | default: false |
| | | }, |
| | | highlightCurrentRow: { |
| | | type: Boolean, |
| | |
| | | default: undefined |
| | | }, |
| | | page:{ |
| | | type:object, |
| | | type:Object, |
| | | default() { |
| | | return { |
| | | total:0, |
| | | pageNum:0, |
| | | pageSize:10 |
| | | current:0, |
| | | size:10 |
| | | }; |
| | | } |
| | | } |
| | |
| | | text-align: center |
| | | } |
| | | </style> |
| | | |