Blame view

src/views/bdcsj/zxdj/data/index.js 1.89 KB
任超 committed
1 2 3
/*
 * @Description: 
 * @Autor: renchao
4
 * @LastEditTime: 2023-03-31 09:58:17
任超 committed
5
 */
任超 committed
6 7 8 9 10 11 12 13 14

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