selectYgdy.js 2.65 KB
import filter from '@/utils/filter.js'
let vm = null

const sendThis = (_this) => {
  vm = _this
}
class data extends filter {
  constructor() {
    super()
  }
  columns () {
    return [
      {
        type: 'selection',
        label: '全选',
        selectable: this.selected
      },
      {
        label: '序号',
        type: 'index',
        width: '50',
        render: (h, scope) => {
          return (
            <div>
              {(vm.pageData.currentPage - 1) * vm.pageData.pageSize + scope.$index + 1}
            </div>
          )
        }
      },
      {
        prop: "status",
        label: "状态",
        render: (h, scope) => {
          return (
            <div>
              {/* <a v-on:click="doSomething"></a> */}
              <a style='color:#3498db;' v-show={scope.row.djblzt == 1} >正在办理</a>
              <span v-show={scope.row.zjgcdyzt == 1}>,在建工程抵押</span>
              <span v-show={scope.row.ycfzt == 1}>,已预查封</span>
              <span v-show={scope.row.ycfzt == 1}>,已预查封</span>
              <span v-show={scope.row.cfzt == 1}>,已查封</span>
              <span v-show={scope.row.diyizt == 1}>,已地役</span>
              <span v-show={scope.row.yyzt == 1}>,异议中</span>
              <span v-show={scope.row.xzzt == 1}>,已限制</span>
              <span v-show={scope.row.ygmmzt == 1}>,已预告买卖</span>
              <span v-show={scope.row.ygdyzt == 1}>,已预告抵押</span>
              <span v-show={scope.row.dyzt == 1}>,已抵押</span>
            </div>
          )
        }
      },
      {
        prop: "bdcqzh",
        label: "不动产证明号",
      },
      {
        prop: "bdcdyh",
        label: "不动产单元号",
      },
      {
        prop: "dyfs",
        label: "抵押方式",
        render: (h, scope) => {
          switch (scope.row.dyfs) {
            case '1':
              return <span>一般抵押</span>
            case '2':
              return <span>最高额抵押</span>
          }
        }
      },
      {
        prop: "qlrmc",
        label: "抵押权人",
      },
      {
        prop: "qlrzjhm",
        label: "抵押权人证件号",
      },
      {
        prop: "ywrmc",
        label: "抵押人",
      },
      {
        prop: "ywrzjhm",
        label: "抵押人证件号",
      },
      {
        prop: "dyje",
        label: "抵押金额(万元)",
      },
      {
        prop: "dymj",
        label: "抵押面积",
      },
      {
        prop: "dyqx",
        label: "债务履行期限",
      },
      {
        prop: "zl",
        label: "坐落",
      }
    ]
  }


}
let datas = new data()
export {
  datas,
  sendThis
}