Blame view

src/views/business-info/dyiq/data/index.js 1.38 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
        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
27 28
      },
      {
任超 committed
29 30 31 32
        label: "业务号",
        prop: "YWH",
      },
      {
任超 committed
33
        label: "供役地不动产单元号",
任超 committed
34
        width: 150,
任超 committed
35 36 37 38
        prop: "GYDBDCDYH"
      },
      {
        label: "需役地不动产单元号",
任超 committed
39
        width: 150,
任超 committed
40 41 42
        prop: "XYDBDCDYH"
      },
      {
任超 committed
43 44 45 46 47 48 49 50 51 52 53 54
        label: "不动产产权证号",
        prop: "bdcqzh"
      },
      {
        label: "权利类型",
        render: (h, scope) => {
          return (
            <div>
              <span>{this.dicStatus(scope.row.qllx, 'A8')}</span>
            </div>
          )
        },
任超 committed
55 56
      },
      {
任超 committed
57 58
        label: "权利用途",
        prop: "qlyt"
任超 committed
59 60 61 62 63 64 65 66 67 68 69 70 71
      },
      {
        label: "登记时间",
        prop: "DJSJ"
      },
      {
        label: "登记机构",
        prop: "DJJG"
      }
    ]
  }
}
export default new data()