Blame view

src/utils/mixin/ywsqTable.js 2.07 KB
1 2 3
/*
 * @Description: 
 * @Autor: renchao
4
 * @LastEditTime: 2023-11-22 13:42:26
5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
 */
import { mapGetters } from 'vuex'
import { defaultParameters } from "../../views/ywbl/ywsq/javascript/publicDefaultPar";
export default {
  data () {
    return {
      pageData: {
        currentPage: 1,
        pageSize: 10
      }
    }
  },
  computed: {
    ...mapGetters(['dictData']),
  },
  mounted () {
    window.addEventListener('keydown', this.handkeyCode, true)//开启监听键盘按下事件
22
    this.handleSearch()
23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91
  },
  methods: {
    /**
     * @description: handkeyCode
     * @param {*} e
     * @author: renchao
     */
    handkeyCode (e) {
      if (e.keyCode === 13) {
        this.handleSearch()
      }
    },
    /**
     * @description: handleSearch
     * @author: renchao
     */
    handleSearch () {
      this.pageData.currentPage = 1
      if (this.fetchData) {
        this.fetchData()
      }
      if (this.queryClick) {
        this.queryClick()
      }
    },
    /**
     * @description: handleSizeChange
     * @param {*} val
     * @author: renchao
     */
    handleSizeChange (val) {
      this.pageData.currentPage = 1
      this.pageData.pageSize = val
      this.queryClick()
    },
    /**
     * @description: handleCurrentChange
     * @param {*} val
     * @author: renchao
     */
    handleCurrentChange (val) {
      this.pageData.currentPage = val
      if (this.queryClick) {
        this.queryClick()
      }
    },
    /**
     * @description: handleDel
     * @author: renchao
     */
    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
    },
    /**
     * @description: resetForm
     * @param {*} isYwbl
     * @author: renchao
     */
    resetForm (isYwbl) {
      if (isYwbl) {
        this.queryForm = defaultParameters.defaultParameters();
        this.pageData.currentPage = 1;
        this.queryClick()
      }
    }
  }
}