| | |
| | | <template v-slot:table> |
| | | <limsTable ref="yearTable" :column="yearColumnData" :height="'28vh'" :highlightCurrentRow="true" |
| | | :rowClick="rowClick" :table-data="yearTableData" :table-loading="yearLoading" |
| | | style="margin-top: 0.5em;padding: 0 15px;" :page="yearPage"> |
| | | style="margin-top: 0.5em;padding: 0 15px;" :page="yearPage" @pagination="pagination"> |
| | | </limsTable> |
| | | </template> |
| | | </TableCard> |
| | |
| | | </template> |
| | | <template v-slot:table> |
| | | <limsTable :column="yearDetailColumnData" :height="'28vh'" :table-data="yearDetailTableData" |
| | | :table-loading="yearDetailLoading" style="margin-top: 18px; padding: 0 15px;" :page="yearDetailPage"> |
| | | :table-loading="yearDetailLoading" style="margin-top: 18px; padding: 0 15px;" :page="yearDetailPage" |
| | | @pagination="pagination1"> |
| | | </limsTable> |
| | | </template> |
| | | </TableCard> |
| | |
| | | }) |
| | | }, |
| | | // 年计划分页 |
| | | handleYearCurrent(page) { |
| | | this.yearPage.current = page |
| | | this.getYearPlanList() |
| | | }, |
| | | handleYearSizeChange(size) { |
| | | this.yearPage.size = size |
| | | this.getYearPlanList() |
| | | pagination({ page, limit }) { |
| | | this.yearPage.current = page; |
| | | this.yearPage.size = limit; |
| | | this.getYearPlanList(); |
| | | }, |
| | | // 年明细计划分页 |
| | | handleYearDetailCurrent(page) { |
| | | this.yearDetailPage.current = page |
| | | this.getYearDetailPlanList() |
| | | }, |
| | | handleYearDetailSizeChange(size) { |
| | | this.yearDetailPage.size = size |
| | | this.getYearDetailPlanList() |
| | | pagination1({ page, limit }) { |
| | | this.yearDetailPage.current = page; |
| | | this.yearDetailPage.size = limit; |
| | | this.getYearDetailPlanList(); |
| | | }, |
| | | }, |
| | | // 用于上传文件的信息 |