Blame view

src/mixins/tableMixin.js 1.63 KB
任超 committed
1
import { mapGetters } from 'vuex'
任超 committed
2
// 引入详情弹框
3
import dataDetails from "@/components/EditDialog";
任超 committed
4 5 6
let mixin = {
  data () {
    return {
任超 committed
7
      title: '',
任超 committed
8 9 10 11 12
      formData: {
        pageSize: 10
      }
    }
  },
任超 committed
13 14 15
  components: {
    dataDetails,
  },
任超 committed
16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35
  computed: {
    ...mapGetters(['dicData'])
  },
  created () {
    this.featchData()
  },
  methods: {
    // 表格索引得问题
    indexMethod (index) {
      return index + 1 + (this.form.currentPage - 1) * this.formData.pageSize;
    },
    handleSizeChange (val) {
      this.formData.pageSize = val
      this.featchData()
    },
    handleCurrentChange (val) {
      this.form.currentPage = val
      this.featchData()
    },
    handleSubmit () {
任超 committed
36
      this.tableData.data = []
任超 committed
37
      this.featchData()
任超 committed
38 39 40
    },
    // 详情
    handleEdit (row) {
任超 committed
41 42 43 44 45 46 47 48 49 50
      if (row.rectypeName) {
        this.title = row.rectypeName
      } else {
        let Title = ''
        this.dicData['A21'].map(item => {
          if (item.DCODE == row.DJLX || item.DCODE == row.djlx) {
            Title = item.DNAME
            return
          }
        })
任超 committed
51

任超 committed
52 53 54 55 56 57 58 59
        this.dicData['A8'].map(item => {
          if (item.DCODE == row.QLLX || item.DCODE == row.qllx) {
            Title += '-' + item.DNAME
            return
          }
        })
        this.title = Title
      }
任超 committed
60
      this.$refs.editLog.isShow(row);
任超 committed
61
    },
任超 committed
62
    // 重置表单
任超 committed
63 64 65 66 67 68 69 70
    resetForm () {
      if (!this.form) return
      Object.keys(this.form).forEach((key) => {
        if (key !== 'currentPage') this.form[key] = '';
      })
      this.form.currentPage = 1
      this.tableData.data = []
      this.featchData()
任超 committed
71 72 73
    }
  }
}
赵千 committed
74
export default mixin