Blame view

src/views/sqcx/sqcxjl/sqcxjldata.js 1.15 KB
jiaozeping@pashanhoo.com committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
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'
      },
      {
任超 committed
19 20
        prop: "cxly",
        label: "查询来源",
jiaozeping@pashanhoo.com committed
21 22
      },
      {
任超 committed
23 24
        prop: "cxlx",
        label: "查询类型",
jiaozeping@pashanhoo.com committed
25
      },
任超 committed
26
      {
任超 committed
27
        label: "查询编号",
任超 committed
28
        prop: "cxbh"
jiaozeping@pashanhoo.com committed
29 30
      },
      {
任超 committed
31 32
        prop: "cxsj",
        label: "查询时间",
jiaozeping@pashanhoo.com committed
33 34
      },
      {
任超 committed
35 36
        prop: "slry",
        label: "受理人员",
jiaozeping@pashanhoo.com committed
37 38
      },
      {
任超 committed
39 40
        prop: "sqr",
        label: "申请人",
jiaozeping@pashanhoo.com committed
41 42
      },
      {
任超 committed
43 44
        prop: "yqlrgx",
        label: "与权利人的关系",
jiaozeping@pashanhoo.com committed
45 46
      },
      {
任超 committed
47 48
        prop: "qlr",
        label: "权利人",
jiaozeping@pashanhoo.com committed
49 50
      },
      {
liangyifan committed
51
        prop: "cxyt",
任超 committed
52
        label: "查询用途",
任超 committed
53 54 55 56 57 58 59
      },
      {
        label: "查询编号",
        render: (h, scope) => {
          return <el-button type="text" icon='el-icon-view' onClick={() => { vm.handleView() }}>查看</el-button>
        }
      },
jiaozeping@pashanhoo.com committed
60 61 62 63 64 65 66 67
    ]
  }
}
let datas = new data()
export {
  datas,
  sendThis
}