Blame view

src/views/bdcsj/fdcqyz/data/index.js 1.87 KB
xiaomiao committed
1

xiaomiao committed
2

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