Blame view

src/views/business-info/jsydzjdsyq/data/index.js 1.83 KB
任超 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>
田浩浩 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
        render: (h, scope) => {
          return (
            <div>
田浩浩 committed
25 26 27 28 29 30 31
              <span>{this.dicStatus(scope.row.QSZT, 'A22')}</span>
            </div>
          )
        },
      },     
      {
        label: "权利类型",
任超 committed
32
        width: 80,  
田浩浩 committed
33 34 35 36 37 38 39 40 41 42
        render: (h, scope) => {
          return (
            <div>
              <span>{this.dicStatus(scope.row.QLLX, 'A8')}</span>
            </div>
          )
        },
      },
      {
        label: "登记类型",
任超 committed
43
        width: 80,  
田浩浩 committed
44 45 46 47
        render: (h, scope) => {
          return (
            <div>
              <span>{this.dicStatus(scope.row.DJLX, 'A21')}</span>
48 49 50 51 52
            </div>
          )
        },
      },
      {
任超 committed
53
        label: "业务号",
田浩浩 committed
54
        prop: "YWH",
任超 committed
55
        width: 95
任超 committed
56 57 58
      },
      {
        label: "不动产单元号",
田浩浩 committed
59
        prop: "BDCDYH",
任超 committed
60
        width: 150,  
任超 committed
61 62 63
      },
      {
        label: "不动产权证号",
田浩浩 committed
64
        prop: "BDCQZH"
65 66 67
      },
      {
        label: "权利人",
1  
jiaozeping@pashanhoo.com committed
68
        prop: "qlrmc"
69 70 71
      },
      {
        label: "用途",
田浩浩 committed
72
        prop: "YT"
73 74
      },
      {
田浩浩 committed
75
        label: "使用权面积",
任超 committed
76 77
        prop: "SYQMJ",
        width: 90,  
78 79 80 81 82
      },
      {
        label: "坐落",
        prop: "zl"
      },
田浩浩 committed
83
      
任超 committed
84 85 86
      {
        label: "登记时间",
        width: 140,
田浩浩 committed
87
        prop: "DJSJ"
任超 committed
88 89 90
      },
      {
        label: "登记机构",
田浩浩 committed
91
        prop: "DJJG"
任超 committed
92 93 94 95 96
      }
    ]
  }
}
export default new data()