import filter from '@/utils/filter.js' let vm = null const sendThis = (_this) => { vm = _this } class data extends filter { constructor() { super() } columns () { return [ { label: '序号', type: 'index', width: '50' }, { prop: "cxly", label: "查询来源", }, { prop: "cxlx", label: "查询类型", }, { label: "查询编号", render: (h, scope) => { return <el-button type="text" onClick={() => { vm.openDialog() }}>{scope.row.cxbh}</el-button> } }, { prop: "cxsj", label: "查询时间", }, { prop: "slry", label: "受理人员", }, { prop: "sqr", label: "申请人", }, { prop: "yqlrgx", label: "与权利人的关系", }, { prop: "qlr", label: "权利人", }, { prop: "cxyt", label: "查询用途", } ] } } let datas = new data() export { datas, sendThis }