Blame view

src/views/jsbwcxrk/data/index.js 1.04 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
import filter from '@/utils/filter.js'
class data extends filter {
  constructor() {
    super()
  }
  columns () {
    return [
      {
        prop: "qygh",
        label: "区域规划",
      },
      {
        prop: "rkkssj",
        label: "入库开始时间",
      },
      {
        prop: "rkjssh",
        label: "入库结束时间",
      },
      {
        prop: "zjrksj",
        label: "最近入库时间",
      },
      {
        prop: "rksbsl",
        label: "入库失败熟练",
      },
      {
        prop: "rkcgsl",
        label: "入库成功数量",
      },
      {
        prop: "zsl",
        label: "总数量",
      },
      {
        prop: 'cxrkzt',
        label: '重新入库状态',
        render: (h, scope) => {
          return (
            <div>
              {
                scope.row.cxrkzt
                  ? <el-tag type='success'>入库</el-tag>
                  : <el-tag type='primary'>入库1</el-tag>
              }
            </div>
          )
        }
      }
    ]
  }
}
export default new data()