lpcxdata.js 1.59 KB
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: "ywly",
        label: "业务来源",
      },
      {
        prop: "lczt",
        label: "流程状态",
      },
      {
        prop: "zbhj",
        label: "在办环节",
      },
      {
        prop: "ywh",
        label: "业务号",
      },
      {
        prop: "sqywmc",
        label: "申请业务名称",
      },
      {
        prop: "qlr",
        label: "权利人",
      },
      {
        prop: "ywr",
        label: "义务人",
      },
      {
        prop: "zl",
        label: "坐落",
      },
      {
        prop: "slsj",
        label: "受理时间",
        sortable: 'custom'
      },
      {
        prop: "slry",
        label: "受理人员",
      },
      {
        prop: "zrsj",
        label: "转入时间",
        sortable: 'custom'
      },
      {
        label: '操作',
        width: '80',
        align: 'center',
        fixed: 'right',
        render: (h, scope) => {
          return <el-button type="text" icon="el-icon-delete" onClick={() => { vm.openDialog(scope) }}>编辑</el-button>
        }
      }
    ]
  }

  ywlys(){
    return[
      { value: 1, label: "办事大厅" },
      { value: 2, label: "微信小程序" },
      { value: 3, label: "法院端" },
      { value: 4, label: "银行端" },
    ]
  } 

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