Blame view

src/views/sqcx/sqcxjl/sqcxjldata.js 1.07 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 29 30
        render: (h, scope) => {
          return <el-button type="text" onClick={() => { vm.openDialog() }}>{scope.row.cxbh}</el-button>
        }
jiaozeping@pashanhoo.com committed
31 32
      },
      {
任超 committed
33 34
        prop: "cxsj",
        label: "查询时间",
jiaozeping@pashanhoo.com committed
35 36
      },
      {
任超 committed
37 38
        prop: "slry",
        label: "受理人员",
jiaozeping@pashanhoo.com committed
39 40
      },
      {
任超 committed
41 42
        prop: "sqr",
        label: "申请人",
jiaozeping@pashanhoo.com committed
43 44
      },
      {
任超 committed
45 46
        prop: "yqlrgx",
        label: "与权利人的关系",
jiaozeping@pashanhoo.com committed
47 48
      },
      {
任超 committed
49 50
        prop: "qlr",
        label: "权利人",
jiaozeping@pashanhoo.com committed
51 52
      },
      {
liangyifan committed
53
        prop: "cxyt",
任超 committed
54
        label: "查询用途",
jiaozeping@pashanhoo.com committed
55 56 57
      }
    ]
  }
liangyifan committed
58

jiaozeping@pashanhoo.com committed
59 60 61 62 63 64
}
let datas = new data()
export {
  datas,
  sendThis
}