|
|
|
@ -24,13 +24,13 @@
|
|
|
|
|
<div class="table-cell count">{{ scope.row.count }}</div>
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column label="应扫码数量" prop="scanActCount" :min-width="120" width="180">
|
|
|
|
|
<el-table-column label="应扫码数量" prop="scanActCount" :min-width="120" width="200">
|
|
|
|
|
<template v-slot="scope">
|
|
|
|
|
<div v-if="scope.row.autoTagStatus === 2" class="table-cell warning">
|
|
|
|
|
无需扫码
|
|
|
|
|
</div>
|
|
|
|
|
<div v-else :class="getScanCountClass(scope.row)" class="table-cell">
|
|
|
|
|
{{ scope.row.scanCount }}/200
|
|
|
|
|
{{ scope.row.scanCount }}/{{ scope.row.shouldCount }}
|
|
|
|
|
</div>
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|