Blame view

src/views/sqcx/jtfc/components/addjtfcdata.js 1.59 KB
1  
renchao@pashanhoo.com committed
1 2 3 4 5
/*
 * @Description: 
 * @Autor: renchao
 * @LastEditTime: 2023-06-14 14:48:35
 */
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',
1  
renchao@pashanhoo.com committed
19
        width: '110',
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',
1  
renchao@pashanhoo.com committed
36
        width: '110',
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 50 51 52 53 54 55
        label: '证件号',
      },
      {
        prop: 'fdzl',
        label: '房地坐落',
      },
      {
jiaozeping@pashanhoo.com committed
56
        prop: 'fwmj',
1  
renchao@pashanhoo.com committed
57
        width: '120',
58 59 60 61 62 63 64 65 66 67 68 69
        label: '建筑面积(㎡)',
      },
      {
        prop: 'fwyt',
        label: '房屋用途',
      },
      {

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