Blame view

src/views/system/qtjfjmb/qtjfjmb.js 1.53 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: "qllx",
任超 committed
27
        width: '110',
任超 committed
28 29 30 31 32 33 34 35
        label: "权利类型编码",
      },
      {
        prop: "qllxmc",
        label: "权利类型名称",
      },
      {
        label: "不动产权证类型",
任超 committed
36 37 38 39 40 41 42 43 44 45 46
        render: (h, scope) => {
          return (
            <div>
              {
                scope.row.bdcqzlx == '1' ?
                  <span>不动产权证书</span> :
                  <span>不动产登记证明</span>
              }
            </div>
          )
        }
任超 committed
47 48
      },
      {
任超 committed
49
        prop: "updatetime",
任超 committed
50 51 52
        label: "最近操作时间",
      },
      {
任超 committed
53
        prop: "updater",
任超 committed
54 55 56 57 58 59 60 61 62 63
        label: "最近操作人",
      },
      {
        label: '操作',
        width: '150',
        align: 'center',
        fixed: 'right',
        render: (h, scope) => {
          return (
            <div>
任超 committed
64
              <el-button type="text" icon="el-icon-edit-outline" onClick={() => { vm.editClick(scope.row) }}>修改</el-button>
任超 committed
65 66 67 68 69 70 71 72 73 74 75 76 77
            </div>
          )
        }
      }
    ]
  }

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