Blame view

src/views/workflow/javascript/szxxdata.js 1.03 KB
蔡俊立 committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 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 49 50 51 52 53 54 55 56 57 58 59 60 61
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',
        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 datas = new data()
export {
  datas,
  sendThis
}