Blame view

src/views/zsgl/zsrk/zsrkdata.js 2.13 KB
jiaozeping@pashanhoo.com committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14
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
15 16 17 18 19 20 21 22
        width: '50',
        render: (h, scope) => {
          return (
            <div>
              {(vm.pageData.currentPage - 1) * vm.pageData.pageSize + scope.$index + 1}
            </div>
          )
        }
jiaozeping@pashanhoo.com committed
23 24
      },
      {
蔡俊立 committed
25 26
        prop: "batchno",
        label: "入库编号",
jiaozeping@pashanhoo.com committed
27 28
      },
      {
蔡俊立 committed
29 30
        prop: "operationtime",
        label: "入库时间",
jiaozeping@pashanhoo.com committed
31 32
      },
      {
蔡俊立 committed
33 34
        prop: "operator",
        label: "入库人员",
jiaozeping@pashanhoo.com committed
35 36
      },
      {
蔡俊立 committed
37 38
        prop: "zsnum",
        label: "不动产登记证明(本)",
jiaozeping@pashanhoo.com committed
39 40
      },
      {
蔡俊立 committed
41 42
        prop: "zsnum",
        label: "不动产权证书(本)",
jiaozeping@pashanhoo.com committed
43 44
      },
      {
蔡俊立 committed
45 46
        prop: "bz",
        label: "备注",
jiaozeping@pashanhoo.com committed
47 48
      },
      {
蔡俊立 committed
49
        label: "状态",
任超 committed
50
        width: '90',
蔡俊立 committed
51 52 53
        render: (h, scope) => {
          switch (scope.row.state) {
            case '0':
任超 committed
54
              return <div class='prohibit'>正在审核</div>
蔡俊立 committed
55
            case '1':
任超 committed
56
              return <div class='allow'>已入库</div>
蔡俊立 committed
57 58
          }
        }
jiaozeping@pashanhoo.com committed
59 60 61 62 63 64
      },
      {
        label: '操作',
        align: 'center',
        fixed: 'right',
        render: (h, scope) => {
蔡俊立 committed
65 66 67
          switch (scope.row.state) {
            case '0':
              return <div>
任超 committed
68 69 70
                <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.delZsrk(scope.row) }}>删除</el-button>
              </div>
蔡俊立 committed
71
            case '1':
蔡俊立 committed
72
              return <el-button type="text" onClick={() => { vm.openDialog(scope.row.bsmBatch) }}>查看</el-button>
蔡俊立 committed
73
          }
jiaozeping@pashanhoo.com committed
74 75 76 77 78
        }
      }
    ]
  }

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

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