table.js 911 Bytes
import { mapGetters } from 'vuex'
export default {
  data () {
    return {
      pageData: {
        currentPage: 1,
        pageSize: 10
      }
    }
  },
  computed: {
    ...mapGetters(['dicData']),
  },
  mounted () {
    if (this.queryClick) {
      this.queryClick()
    }
  },
  methods: {
    handleSizeChange (val) {
      this.pageData.currentPage = 1
      this.pageData.pageSize = val
      this.queryClick()
    },
    handleCurrentChange (val) {
      console.log(val, '222222222');
      this.pageData.currentPage = val
      if (this.queryClick) {
        this.queryClick()
      }
    },
    handleDel () {
      let deleteAfterPage = Math.ceil((this.tableData.total - 1) / this.pageData.pageSize)
      let currentPage = this.pageData.currentPage > deleteAfterPage ? deleteAfterPage : this.pageData.currentPage
      this.pageData.currentPage = currentPage < 1 ? 1 : currentPage
    }
  }
}