Blame view

src/views/system/dictionaries/dictionaries.js 1.58 KB
任超 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 32 33 34
        label: "字典类型名称",
      },
      {
        label: "是否允许修改",
任超 committed
35
        width: '150',
任超 committed
36 37 38
        render: (h, scope) => {
          return (
            <div>
任超 committed
39
              {
任超 committed
40
                scope.row.isenable == '1' ?
任超 committed
41 42 43
                  <div class='allow'>允许</div> :
                  <div class='prohibit'>禁止</div>
              }
任超 committed
44 45 46 47 48 49 50 51 52 53 54 55
            </div>
          )
        }
      },
      {
        label: '操作',
        width: '150',
        align: 'center',
        fixed: 'right',
        render: (h, scope) => {
          return (
            <div>
任超 committed
56
              {
任超 committed
57
                scope.row.isenable == '1' ?
任超 committed
58 59 60
                  <el-button type="text" icon="el-icon-edit-outline" onClick={() => { vm.editClick(scope.row, 1) }}>修改</el-button> :
                  <el-button type="text" icon="el-icon-view" onClick={() => { vm.editClick(scope.row, 2) }}>查看</el-button>
              }
任超 committed
61 62 63 64 65 66 67 68 69 70 71 72 73
            </div>
          )
        }
      }
    ]
  }

}
let datas = new data()
export {
  datas,
  sendThis
}