Blame view

src/views/sqcx/jtfc/components/addjtfcdata.js 1.62 KB
1  
renchao@pashanhoo.com committed
1 2 3
/*
 * @Description: 
 * @Autor: renchao
4
 * @LastEditTime: 2023-11-15 16:29:28
1  
renchao@pashanhoo.com committed
5
 */
6 7 8 9 10
import filter from '@/utils/filter.js'
class data extends filter {
  constructor() {
    super()
  }
任超 committed
11
  columns () {
12 13 14 15 16 17 18
    return [
      {
        prop: 'qszt',
        label: '权属状态',
      },
      {
        prop: 'bdcqzh',
19
        width: 150,
20 21 22 23 24 25 26
        label: '不动产权证号',
      },
      {
        prop: 'djsj',
        label: '登记时间',
      },
      {
jiaozeping@pashanhoo.com committed
27
        prop: 'wqhth',
28 29 30 31 32 33 34 35
        label: '合同号',
      },
      {
        prop: 'wqsj',
        label: '网签时间',
      },
      {
        prop: 'bdcdyh',
36
        width: 150,
37 38 39 40 41 42 43
        label: '不动产单元号',
      },
      {
        prop: 'gyfs',
        label: '共有方式',
      },
      {
jiaozeping@pashanhoo.com committed
44
        prop: 'qlrmc',
45 46 47
        label: '权利人',
      },
      {
jiaozeping@pashanhoo.com committed
48
        prop: 'zjhm',
49
        label: '证件号',
50
        width: 120,
51 52 53
      },
      {
        prop: 'fdzl',
54
        width: 120,
55 56 57
        label: '房地坐落',
      },
      {
jiaozeping@pashanhoo.com committed
58
        prop: 'fwmj',
59
        width: 120,
60 61 62 63 64 65 66 67 68 69 70 71
        label: '建筑面积(㎡)',
      },
      {
        prop: 'fwyt',
        label: '房屋用途',
      },
      {

        label: '登记状态',
        align: 'center',
        fixed: 'right',
        render: (h, scope) => {
72
          if (scope.row.dyzt != '0' && scope.row.cfzt != '0') {
蔡俊立 committed
73 74
            return <div>抵押、查封</div>
          }
75
          if (scope.row.dyzt != '0') {
蔡俊立 committed
76 77
            return <div>抵押</div>
          }
78
          if (scope.row.cfzt != '0') {
蔡俊立 committed
79 80
            return <div>查封</div>
          }
81 82 83 84 85 86 87
        }
      }
    ]
  }
}
let datas = new data()
export {
88
  datas
89
}