Blame view

src/views/zsgl/zsff/zsffdata.js 2.21 KB
1 2 3 4 5
/*
 * @Description: 
 * @Autor: renchao
 * @LastEditTime: 2023-04-11 10:39:01
 */
jiaozeping@pashanhoo.com committed
6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
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',
任超 committed
21 22 23 24 25 26 27 28
        width: '50',
        render: (h, scope) => {
          return (
            <div>
              {(vm.pageData.currentPage - 1) * vm.pageData.pageSize + scope.$index + 1}
            </div>
          )
        }
jiaozeping@pashanhoo.com committed
29 30
      },
      {
蔡俊立 committed
31 32
        prop: "batchno",
        label: "分发编号",
jiaozeping@pashanhoo.com committed
33 34
      },
      {
蔡俊立 committed
35 36
        prop: "operator",
        label: "分发人员",
jiaozeping@pashanhoo.com committed
37 38
      },
      {
蔡俊立 committed
39 40
        prop: "zmnum",
        label: "不动产登记证明(本)",
jiaozeping@pashanhoo.com committed
41 42
      },
      {
蔡俊立 committed
43 44
        prop: "zsnum",
        label: "不动产权证书(本)",
jiaozeping@pashanhoo.com committed
45 46
      },
      {
蔡俊立 committed
47 48
        prop: "operationtime",
        label: "领取时间",
49
        width: '140'
jiaozeping@pashanhoo.com committed
50 51
      },
      {
蔡俊立 committed
52 53
        prop: "receiver",
        label: "领取人员",
jiaozeping@pashanhoo.com committed
54 55
      },
      {
蔡俊立 committed
56
        label: "状态",
任超 committed
57
        width: '90',
蔡俊立 committed
58 59 60
        render: (h, scope) => {
          switch (scope.row.state) {
            case '0':
任超 committed
61
              return <div class='prohibit'>正在分发</div>
蔡俊立 committed
62
            case '1':
任超 committed
63
              return <div class='allow'>已分发</div>
蔡俊立 committed
64 65
          }
        }
jiaozeping@pashanhoo.com committed
66 67 68
      },
      {
        label: '操作',
69
        width: '130',
jiaozeping@pashanhoo.com committed
70
        render: (h, scope) => {
蔡俊立 committed
71 72 73
          switch (scope.row.state) {
            case '0':
              return <div>
任超 committed
74 75 76
                <el-button type="text" icon="el-icon-edit-outline" onClick={() => { vm.confrimVerify(scope.row) }}>确认分发</el-button>
                <el-button type="text" icon="el-icon-delete" onClick={() => { vm.delZsff(scope.row) }}>删除</el-button>
              </div>
蔡俊立 committed
77
            case '1':
蔡俊立 committed
78
              return <el-button type="text" onClick={() => { vm.openDialog(scope.row.bsmBatch) }}>查看</el-button>
蔡俊立 committed
79
          }
jiaozeping@pashanhoo.com committed
80 81 82 83 84
        }
      }
    ]
  }

任超 committed
85 86
  ywlys () {
    return [
jiaozeping@pashanhoo.com committed
87 88 89 90 91
      { value: 1, label: "办事大厅" },
      { value: 2, label: "微信小程序" },
      { value: 3, label: "法院端" },
      { value: 4, label: "银行端" },
    ]
任超 committed
92
  }
jiaozeping@pashanhoo.com committed
93 94 95 96 97 98 99

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