dbxdata.js 2.76 KB
/*
 * @Description: 
 * @Autor: renchao
 * @LastEditTime: 2023-05-24 15:06:24
 */
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',
        render: (h, scope) => {
          return (
            <div>
              {(vm.pageData.currentPage - 1) * vm.pageData.pageSize + scope.$index + 1}
            </div>
          )
        }
      },
      {
        prop: "ywlymc",
        label: "业务来源",
        width: '100'
      },
      {
        label: "流程状态",
        width: '80',
        render: (h, scope) => {
          if (scope.row.cfgqzt == '1') {
            return <div class='suspend'>查封挂起</div>
          }
          if (scope.row.yygqzt == '1') {
            return <div class='suspend'>异议挂起</div>
          }
          return <div class='allow'>进行中</div>
          // switch (scope.row.lczt) {
          //   case '1':
          //     return <div class='allow'>进行中</div>
          //   case '2':
          //     return <div class='prohibit'>已结束</div>
          //   case '3':
          //     return <div class='allow'>进行中</div>
          // }
        }
      },
      {
        prop: "zbhj",
        label: "在办环节",
        width: '80'
      },
      {
        label: '业务号',
        align: 'center',
        width: '100',
        render: (h, scope) => {
          return <el-button type="text" onClick={() => { vm.ywhClick(scope.row) }}>{scope.row.ywh}</el-button>
        }
      },
      {
        prop: "sqywmc",
        label: "申请业务名称",
        width: '220'
      },
      {
        prop: "bdcdyh",
        label: "不动产单元号",
        width: '170',
      },
      {
        prop: "qlrmc",
        label: "权利人",
        width: '120',
      },
      {
        prop: "ywrmc",
        label: "义务人",
        width: '120',
      },
      {
        prop: "zl",
        label: "坐落",
        minWidth: '130',
        showOverflowTooltip: true
      },
      {
        prop: "slsj",
        label: "受理时间",
        sortable: 'custom',
        width: '140'
      },
      {
        prop: "slry",
        label: "受理人员",
        width: '80'
      },
      {
        label: "转入时间",
        sortable: 'custom',
        prop: 'fromstepdate',
        width: '140'
      },
      // {
      //   label: '操作',
      //   width: '80',
      //   render: (h, scope) => {
      //     return <el-button type="text" icon="el-icon-delete" onClick={() => { vm.del(scope.row) }}>删除</el-button>
      //   }
      // }
    ]
  }
}
let datas = new data()
export {
  datas,
  sendThis
}