Blame view

src/views/bdcsj/yydj/data/index.js 1.16 KB
任超 committed
1 2 3 4 5 6 7 8
import filter from '@/utils/filter.js'
class data extends filter {
  constructor() {
    super()
  }
  columns () {
    return [
      {
任超 committed
9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
        label: "行政区",
        render: (h, scope) => {
          return (
            <div>
              <span>{this.dicStatus(scope.row.xzq, 'A20')}</span>
            </div>
          )
        },
      },
      {
        label: "权属状态",
        render: (h, scope) => {
          return (
            <div>
              <span>{this.dicStatus(scope.row.qszt, 'A22')}</span>
            </div>
          )
        },
      },
      {
任超 committed
29
        label: "业务号",
任超 committed
30
        prop: "ywh"
任超 committed
31 32 33
      },
      {
        label: "不动产单元号",
1  
jiaozeping@pashanhoo.com committed
34
        prop: "bdcdyh"
任超 committed
35 36
      },
      {
任超 committed
37 38 39 40 41 42 43 44 45 46
        label: "不动产产权证号",
        prop: "bdcqzh"
      },
      {
        label: "权利人",
        prop: "qlr"
      },
      {
        label: "用途",
        prop: "yt"
任超 committed
47 48
      },
      {
任超 committed
49 50
        label: "权利性质",
        prop: "qlxz"
任超 committed
51 52 53 54
      },
      {
        label: "登记时间",
        width: 140,
1  
jiaozeping@pashanhoo.com committed
55
        prop: "djsj"
任超 committed
56 57 58
      },
      {
        label: "登记机构",
1  
jiaozeping@pashanhoo.com committed
59
        prop: "djjg"
任超 committed
60 61 62 63 64
      }
    ]
  }
}
export default new data()