Blame view

src/views/bdcsj/gzwsyq/data/index.js 2.16 KB
任超 committed
1 2 3
/*
 * @Description: 
 * @Autor: renchao
4
 * @LastEditTime: 2023-03-31 09:57:27
任超 committed
5
 */
任超 committed
6 7 8 9 10 11 12 13
import filter from '@/utils/filter.js'
class data extends filter {
  constructor() {
    super()
  }
  columns () {
    return [
      {
14
        label: "行政区",
任超 committed
15
        width: 80,
任超 committed
16 17 18
        render: (h, scope) => {
          return (
            <div>
19
              <span>{this.dicStatus(scope.row.XZQ, 'A20')}</span>
任超 committed
20 21 22 23 24
            </div>
          )
        },
      },
      {
25
        label: "权属状态",
任超 committed
26 27 28
        render: (h, scope) => {
          return (
            <div>
29
              <span>{this.dicStatus(scope.row.ZXYWH, 'A22')}</span>
任超 committed
30 31
            </div>
          )
32 33 34 35 36
        },
      },
      {
        label: "业务号",
        prop: "YWH",
任超 committed
37
        minWidth: 150,
任超 committed
38 39 40
      },
      {
        label: "不动产单元号",
任超 committed
41 42
        prop: "BDCDYH",
        minWidth: 150,
任超 committed
43 44 45
      },
      {
        label: "不动产权证号",
任超 committed
46 47
        prop: "BDCQZH",
        minWidth: 150,
任超 committed
48 49
      },
      {
50
        label: "建筑物名称",
51 52
        prop: "JZWMC",
        minWidth: 130
53 54
      },
      {
55 56 57 58 59 60 61 62
        label: "权利人名称",
        prop: "qlrmc",
        minWidth: 130
      },
      {
        label: "证件号",
        prop: "zjh",
        minWidth: 100
63 64 65
      },
      {
        label: "用途",
任超 committed
66 67
        prop: "yt",
        minWidth: 150,
68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99
      },
      {
        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.BDCQZH, 'A9')}</span>
            </div>
          )
        },
      },
      {
        label: "登记类型",
        render: (h, scope) => {
          return (
            <div>
              <span>{this.dicStatus(scope.row.QLLX, 'A21')}</span>
            </div>
          )
        },
      },
      {
任超 committed
100 101 102 103 104 105 106 107 108 109 110 111
        label: "登记时间",
        width: 140,
        prop: "DJSJ"
      },
      {
        label: "登记机构",
        prop: "DJJG"
      }
    ]
  }
}
export default new data()