Blame view

src/views/business-info/fdcqdz/data/index.js 1.83 KB
1  
jiaozeping@pashanhoo.com committed
1 2 3 4 5 6 7 8
import filter from '@/utils/filter.js'
class data extends filter {
  constructor() {
    super()
  }
  columns () {
    return [
      {
9
        label: "行政区",
任超 committed
10
        width: 80,
11 12 13
        render: (h, scope) => {
          return (
            <div>
jiaozeping@pashanhoo.com committed
14
              <span>{this.dicStatus(scope.row.qxdm, 'A20')}</span>
15 16 17 18 19 20
            </div>
          )
        },
      },
      {
        label: "权属状态",
任超 committed
21
        width: 80,
22 23 24 25 26 27 28 29 30
        render: (h, scope) => {
          return (
            <div>
              <span>{this.dicStatus(scope.row.qszt, 'A22')}</span>
            </div>
          )
        },
      },
      {
1  
jiaozeping@pashanhoo.com committed
31
        label: "业务号",
任超 committed
32
        prop: "ywh"
1  
jiaozeping@pashanhoo.com committed
33 34 35 36 37 38 39 40 41 42
      },
      {
        label: "不动产单元号",
        prop: "bdcdyh"
      },
      {
        label: "不动产权证号",
        prop: "bdcqzh"
      },
      {
43
        label: "权利人",
任超 committed
44 45
        prop: "qlrmc",
        width: 150
46 47 48
      },
      {
        label: "用途",
1  
jiaozeping@pashanhoo.com committed
49
        prop: "yt"
50 51 52
      },
      {
        label: "权利类型",
任超 committed
53
        width: 150,
54 55 56 57 58 59 60 61 62
        render: (h, scope) => {
          return (
            <div>
              <span>{this.dicStatus(scope.row.qllx, 'A8')}</span>
            </div>
          )
        },
      },
      {
1  
jiaozeping@pashanhoo.com committed
63
        label: "权利性质",
64 65 66 67 68 69 70 71 72 73 74 75 76
        render: (h, scope) => {
          return (
            <div>
              <span>{this.dicStatus(scope.row.qlxz, 'A9')}</span>
            </div>
          )
        },
      },
      {
        label: "登记类型",
        render: (h, scope) => {
          return (
            <div>
任超 committed
77
              <span>{this.dicStatus(scope.row.djlx, 'A21')}</span>
78 79 80 81 82
            </div>
          )
        }
      },
      {
1  
jiaozeping@pashanhoo.com committed
83 84
        label: "登记时间",
        width: 140,
1  
jiaozeping@pashanhoo.com committed
85
        prop: "djsj"
1  
jiaozeping@pashanhoo.com committed
86 87 88 89 90 91 92 93 94
      },
      {
        label: "登记机构",
        prop: "djjg"
      }
    ]
  }
}
export default new data()