Blame view

src/views/workflow/javascript/zsyl.js 954 Bytes
1 2 3 4 5
/*
 * @Description: 
 * @Autor: renchao
 * @LastEditTime: 2023-05-17 10:39:07
 */
蔡俊立 committed
6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61
import filter from '@/utils/filter.js'
class data extends filter {
  constructor() {
    super()
  }
  columns () {
    return [
      {
        prop: "qlr",
        label: "权利人",
      },
      {
        prop: "gyqk",
        label: "共有情况",
      },
      {
        prop: "zl",
        label: "坐落",
      },
      {
        prop: "bdcdyh",
        label: "不动产单元号",
      },
      {
        prop: "qllx",
        label: "权利类型",
      },
      {
        prop: "qlxz",
        label: "权利性质",
      },
      {
        prop: "yt",
        label: "用途",
      },
      {
        prop: "mj",
        label: "面积",
      },
      {
        prop: "syqx",
        label: "使用期限",
      },
      {
        prop: "qlqtzk",
        label: "权利其他状况",
      },
    ]
  }
}

let datas = new data()

export {
  datas
}