Blame view

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

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

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