Blame view

src/views/system/dictionaries/dictionaries.js 692 Bytes
任超 committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
import filter from '@/utils/filter.js'
let vm = null

const sendThis = (_this) => {
  vm = _this
}
class data extends filter {
  constructor() {
    super()
  }
  columns () {
    return [
      {
        label: '序号',
        type: 'index',
        width: '50',
        render: (h, scope) => {
          return (
            <div>
              {(vm.pageData.currentPage - 1) * vm.pageData.pageSize + scope.$index + 1}
            </div>
          )
        }
      },
      {
蔡俊立 committed
26
        prop: "DCODE",
任超 committed
27 28 29
        label: "字典类型编码",
      },
      {
蔡俊立 committed
30
        prop: "DNAME",
任超 committed
31
        label: "字典类型名称",
任超 committed
32
      }
任超 committed
33 34 35 36 37 38 39 40
    ]
  }
}
let datas = new data()
export {
  datas,
  sendThis
}