gaoluyang
3 天以前 b92ea6fb8b4a75a0d7c561bd045f1a8b1720ddd1
src/views/reportAnalysis/taxComparison/index.vue
@@ -20,6 +20,7 @@
    </el-form>
    <div class="table_list">
      <PIMTable
        rowKey="id"
        :column="columns"
        :tableData="dataList"
        :page="{
@@ -27,7 +28,7 @@
          size: pagination.pageSize,
          total: pagination.total,
        }"
        @pagination="onCurrentChange"
        @pagination="changePage"
      />
    </div>
  </div>
@@ -81,6 +82,11 @@
  {}
);
const changePage = ({ page }) => {
  pagination.currentPage = page;
  onCurrentChange(page);
};
onMounted(() => {
  getTableData();
});