Blame view

src/views/business-info/tdsyq/data/index.js 1.56 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>
yangwei 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>
          )
        },
      },
      {
任超 committed
31
        label: "业务号",
1  
jiaozeping@pashanhoo.com committed
32
        prop: "ywh",
任超 committed
33
        width: 80,
任超 committed
34 35 36
      },
      {
        label: "不动产单元号",
1  
jiaozeping@pashanhoo.com committed
37
        prop: "bdcdyh"
任超 committed
38 39 40
      },
      {
        label: "不动产权证号",
1  
jiaozeping@pashanhoo.com committed
41
        prop: "bdcqzh"
任超 committed
42 43
      },
      {
44
        label: "权利人",
1  
jiaozeping@pashanhoo.com committed
45
        prop: "qlrmc"
46 47 48
      },
      {
        label: "用途",
任超 committed
49 50
        prop: "yt",
        width: 80,
51 52 53
      },
      {
        label: "土地面积",
任超 committed
54 55
        prop: "nydmj",
        width: 80,
56 57 58 59 60 61 62
      },
      {
        label: "坐落",
        prop: "zl"
      },
      {
        label: "登记类型",
任超 committed
63
        width: 80,
64 65 66
        render: (h, scope) => {
          return (
            <div>
任超 committed
67
              <span>{this.dicStatus(scope.row.djlx, 'A21')}</span>
68 69 70 71 72
            </div>
          )
        }
      },
      {
任超 committed
73 74
        label: "登记时间",
        width: 140,
1  
jiaozeping@pashanhoo.com committed
75
        prop: "djsj"
任超 committed
76 77 78
      },
      {
        label: "登记机构",
1  
jiaozeping@pashanhoo.com committed
79
        prop: "djjg"
任超 committed
80 81 82 83 84
      }
    ]
  }
}
export default new data()