曹睿
6 天以前 67acb740390947f2e7cc3834785828ebf9755310
src/views/reportAnalysis/projectProfit/index.vue
@@ -11,6 +11,7 @@
    </el-form>
    <div class="table_list">
      <PIMTable
        rowKey="id"
        :column="columns"
        :tableLoading="loading"
        :tableData="dataList"
@@ -19,7 +20,7 @@
          size: pagination.pageSize,
          total: pagination.total,
        }"
        @pagination="onCurrentChange"
        @pagination="changePage"
      ></PIMTable>
    </div>
  </div>
@@ -92,6 +93,11 @@
  ]
);
const changePage = ({ page }) => {
  pagination.currentPage = page;
  onCurrentChange(page);
};
onMounted(() => {
  getTableData();
});