Blame view

src/views/zsgl/zssyjl/zssyjldata.js 2.19 KB
jiaozeping@pashanhoo.com committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
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',
任超 committed
16 17 18 19 20 21 22 23
        width: '50',
        render: (h, scope) => {
          return (
            <div>
              {(vm.pageData.currentPage - 1) * vm.pageData.pageSize + scope.$index + 1}
            </div>
          )
        }
jiaozeping@pashanhoo.com committed
24 25
      },
      {
蔡俊立 committed
26 27 28 29 30 31 32 33 34 35 36 37 38
        label: "状态",
        render: (h, scope) => {
          switch (scope.row.state) {
            case '1':
              return <span>已入库未分发</span>
            case '2':
              return <span>已领取未使用</span>
            case '3':
              return <span>已制证</span>
            case '4':
              return <span>已作废</span>
          }
        }
jiaozeping@pashanhoo.com committed
39 40
      },
      {
蔡俊立 committed
41 42
        prop: "djjg",
        label: "登记机构",
jiaozeping@pashanhoo.com committed
43 44
      },
      {
蔡俊立 committed
45 46
        prop: "operationtime",
        label: "入库时间",
jiaozeping@pashanhoo.com committed
47 48
      },
      {
蔡俊立 committed
49 50
        prop: "operator",
        label: "入库人员",
jiaozeping@pashanhoo.com committed
51 52
      },
      {
蔡俊立 committed
53 54
        prop: "usedate",
        label: "领取时间",
jiaozeping@pashanhoo.com committed
55 56
      },
      {
蔡俊立 committed
57 58
        prop: "receiver",
        label: "领取人员",
jiaozeping@pashanhoo.com committed
59 60
      },
      {
蔡俊立 committed
61 62 63 64 65 66 67 68 69
        label: "证书类型",
        render: (h, scope) => {
          switch (scope.row.zslx) {
            case 'zs':
              return <span>不动产权证书</span>
            case 'zm':
              return <span>不动产登记证明</span>
          }
        }
jiaozeping@pashanhoo.com committed
70 71
      },
      {
蔡俊立 committed
72 73
        prop: "ysxlh",
        label: "序列号"
jiaozeping@pashanhoo.com committed
74 75
      },
      {
蔡俊立 committed
76 77
        prop: "bdcqzh",
        label: "不动产权证号"
jiaozeping@pashanhoo.com committed
78 79 80 81 82 83 84
      },
      {
        label: '操作',
        width: '80',
        align: 'center',
        fixed: 'right',
        render: (h, scope) => {
蔡俊立 committed
85
          return <el-button type="text" icon="el-icon-view" onClick={() => { vm.openDialog(scope.row) }}>查看</el-button>
jiaozeping@pashanhoo.com committed
86 87 88 89 90
        }
      }
    ]
  }

任超 committed
91 92
  ywlys () {
    return [
jiaozeping@pashanhoo.com committed
93 94 95 96 97
      { value: 1, label: "办事大厅" },
      { value: 2, label: "微信小程序" },
      { value: 3, label: "法院端" },
      { value: 4, label: "银行端" },
    ]
任超 committed
98
  }
jiaozeping@pashanhoo.com committed
99 100 101 102 103 104 105

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