Blame view

src/utils/mixin/table.js 875 Bytes
任超 committed
1 2 3 4 5 6 7 8 9 10 11 12 13
import { mapGetters } from 'vuex'
export default {
  data () {
    return {
      pageData: {
        currentPage: 1,
        pageSize: 10
      }
    }
  },
  computed: {
    ...mapGetters(['dictData']),
  },
任超 committed
14 15 16
  mounted () {
    if (this.queryClick) {
      this.queryClick()
任超 committed
17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37
    }
  },
  methods: {
    handleSizeChange (val) {
      this.pageData.currentPage = 1
      this.pageData.pageSize = val
      this.queryClick()
    },
    handleCurrentChange (val) {
      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
    }
  }
}