Blame view

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