szxxdata.js 1.13 KB
/*
 * @Description:
 * @Autor: renchao
 * @LastEditTime: 2023-05-17 10:39:03
 */
import filter from '@/utils/filter.js'
let vm = null

const sendThis = (_this) => {
  vm = _this
}
class data extends filter {
  constructor() {
    super()
  }
  columns () {
    return [
      {
        width:"50px",
        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) => {
          if (scope.row.sfzf == '0') {
            return <div></div>
          } else {
            return <div>已作废</div>
          }
        }
      },
      {
        prop: "bz",
        label: "备注信息",
      },
    ]
  }
}
let szxxdatas = new data()
export {
  szxxdatas,
  sendThis
}