Blame view

src/views/business-info/fdcqyz/data/index.js 1.81 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 10 11 12 13 14 15 16 17 18 19 20
        label: "行政区",
        width: 150,
        render: (h, scope) => {
          return (
            <div>
              <span>{this.dicStatus(scope.row.xzq, 'A20')}</span>
            </div>
          )
        },
      },
      {
        label: "权属状态",
21
        width: 100,
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 34 35 36
        width: 150
      },
      {
        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 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81
        label: "权利人",
        prop: "qlr"
      },
      {
        label: "用途",
        prop: "tdyt"
      },
      {
        label: "权利类型",
        render: (h, scope) => {
          return (
            <div>
              <span>{this.dicStatus(scope.row.qllx, 'A8')}</span>
            </div>
          )
        },
      },
      {
        label: "权力性质",
        render: (h, scope) => {
          return (
            <div>
              <span>{this.dicStatus(scope.row.qlxz, 'A9')}</span>
            </div>
          )
        },
      },
      {
        label: "登记类型",
        render: (h, scope) => {
          return (
            <div>
            <span>{this.dicStatus(scope.row.djlx, 'A21')}</span>
            </div>
          )
        }
      },
      {
任超 committed
82 83
        label: "登记时间",
        width: 140,
1  
jiaozeping@pashanhoo.com committed
84
        prop: "djsj"
任超 committed
85 86 87
      },
      {
        label: "登记机构",
1  
jiaozeping@pashanhoo.com committed
88
        prop: "djjg"
任超 committed
89 90 91 92 93
      }
    ]
  }
}
export default new data()