Blame view

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

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

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