dictionaries.js 1.58 KB
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>
          )
        }
      },
      {
        prop: "dcode",
        label: "字典类型编码",
      },
      {
        prop: "dname",
        label: "字典类型名称",
      },
      {
        label: "是否允许修改",
        width: '150',
        render: (h, scope) => {
          return (
            <div>
              {
                scope.row.isenable == '1' ?
                  <div class='allow'>允许</div> :
                  <div class='prohibit'>禁止</div>
              }
            </div>
          )
        }
      },
      {
        label: '操作',
        width: '150',
        align: 'center',
        fixed: 'right',
        render: (h, scope) => {
          return (
            <div>
              {
                scope.row.isenable == '1' ?
                  <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>
              }
            </div>
          )
        }
      }
    ]
  }

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