/* * @Description: * @Autor: renchao * @LastEditTime: 2023-10-11 10:59:12 */ import filter from '@/utils/filter.js' let vm = null const sendThis = (_this) => { vm = _this } class data extends filter { constructor() { super() } columns () { return { //发证列表 fzgrid: [ { label: '序号', type: 'index', width: '50' }, { prop: "fzrmc", label: "发证人" }, { prop: "bdcqzlx", label: "不动产权证类型", width: '120', render: (h, scope) => { return ( <div> <span v-show={scope.row.bdcqzlx == '1'}>不动产权证书</span> <span v-show={scope.row.bdcqzlx == '2'}>不动产登记证明</span> </div> ) } }, { label: "权利类型", width: '100', render: (h, scope) => { return ( <el-tooltip effect="dark" content={scope.row.qllx} placement="top" popper-class="tooltip-width "> <span class="ellipsis-table"> {scope.row.qllx}</span> </el-tooltip> ) } }, { prop: "ysxlh", label: "印刷序列号", width: '100', }, { prop: "bdcqzh", label: "不动产权证号", width: '190', }, { label: "权利人", minWidth: '120', render: (h, scope) => { return ( <el-tooltip effect="dark" content={scope.row.qlr} placement="top" popper-class="tooltip-width "> <span class="ellipsis-table"> {scope.row.qlr}</span> </el-tooltip> ) } }, { prop: "ywr", label: "义务人" }, { label: "面积(㎡)", width: '100', render: (h, scope) => { return ( <el-tooltip effect="dark" content={scope.row.mj} placement="top" popper-class="tooltip-width "> <span class="ellipsis-table"> {scope.row.mj}</span> </el-tooltip> ) } }, { label: "坐落", minWidth: '150', render: (h, scope) => { return ( <el-tooltip effect="dark" content={scope.row.zl} placement="top" popper-class="tooltip-width "> <span class="ellipsis-table"> {scope.row.zl}</span> </el-tooltip> ) } }, { prop: "fzsj", label: "发证时间", width: '140', }, { prop: "lzrxm", label: "领证人姓名" }, ], //领证证列表 lzgrid: [ { type: 'selection' }, { label: '序号', type: 'index', width: '50' }, { prop: "bdcqzlx", label: "不动产权证类型", width: '120', render: (h, scope) => { return ( <div> <span v-show={scope.row.bdcqzlx == '1'}>不动产权证书</span> <span v-show={scope.row.bdcqzlx == '2'}>不动产登记证明</span> </div> ) } }, { prop: "qllx", label: "权利类型" }, { prop: "ysxlh", label: "印刷序列号", width: '100', }, { prop: "bdcqzh", label: "不动产权证号" }, { prop: "qlr", label: "权利人" }, { prop: "ywr", label: "义务人" }, { label: "面积(㎡)", width: '100', render: (h, scope) => { return ( <el-tooltip effect="dark" content={scope.row.mj} placement="top" popper-class="tooltip-width "> <span class="ellipsis-table"> {scope.row.mj}</span> </el-tooltip> ) } }, { prop: "zl", label: "坐落" } ] } } } let datas = new data() export { datas, sendThis }