| | |
| | | <el-table |
| | | ref="multipleTable" |
| | | :header-cell-style="{ |
| | | background: '#06122c', |
| | | 'font-size': '12px', |
| | | color: '#4b9bb7', |
| | | 'font-weight': '650', |
| | | 'line-height': '45px', |
| | | }" |
| | |
| | | |
| | | export default { |
| | | created() { |
| | | this.search(); |
| | | this.loadData(); |
| | | }, |
| | | |
| | | props: ["storeInfo"], |
| | | |
| | | data() { |
| | | return { |
| | | tableData: [], |
| | |
| | | }, |
| | | |
| | | methods: { |
| | | search() { |
| | | loadData() { |
| | | getStoreScore(this.storeInfo.id) |
| | | .then((res) => { |
| | | this.tableData = res.records; |
| | |
| | | |
| | | changeCurrentPage(currentPage) { |
| | | this.currentPage = currentPage; |
| | | this.search(); |
| | | this.loadData(); |
| | | }, |
| | | |
| | | tableRowClassName({ row, rowIndex }) { |