Blame view

src/views/workflow/main/szxx/szxxdata.js 1.13 KB
1
/*
“miaofang committed
2
 * @Description:
3 4 5
 * @Autor: renchao
 * @LastEditTime: 2023-05-17 10:39:03
 */
蔡俊立 committed
6 7 8 9 10 11 12 13 14 15 16 17 18
import filter from '@/utils/filter.js'
let vm = null

const sendThis = (_this) => {
  vm = _this
}
class data extends filter {
  constructor() {
    super()
  }
  columns () {
    return [
      {
“miaofang committed
19
        width:"50px",
蔡俊立 committed
20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48
        label: '序号',
        type: 'index',
        render: (h, scope) => {
          return (
            <div>
              {scope.$index + 1}
            </div>
          )
        }
      },
      {
        prop: "szzh",
        label: "缮证证号",
      },
      {
        prop: "ysxlh",
        label: "印刷序列号",
      },
      {
        prop: "szry",
        label: "缮证人员",
      },
      {
        prop: "szsj",
        label: "缮证时间",
      },
      {
        label: "是否作废",
        render: (h, scope) => {
49 50 51 52
          if (scope.row.sfzf == '0') {
            return <div></div>
          } else {
            return <div>已作废</div>
蔡俊立 committed
53
          }
54
        }
蔡俊立 committed
55 56 57 58 59 60 61 62
      },
      {
        prop: "bz",
        label: "备注信息",
      },
    ]
  }
}
“miaofang committed
63
let szxxdatas = new data()
蔡俊立 committed
64
export {
“miaofang committed
65
  szxxdatas,
蔡俊立 committed
66 67
  sendThis
}