问题修改

master
zhangdi 4 days ago
parent 5f2d0c7f95
commit e58220b592
  1. 6
      src/views/firstOrder/components/outDialog.vue

@ -204,9 +204,9 @@
(sizeForm.options == 1 && inBatchForm.optionType === 'YH')
"
></el-input-number>
<span v-else>{{ scope.row.outboundQuantity }}</span>
<span v-else>{{ scope.row.theOutboundQuantity }}</span>
</div>
<span v-else>{{ scope.row.outboundQuantity }}</span>
<span v-else>{{ scope.row.theOutboundQuantity }}</span>
</template>
</el-table-column>
<el-table-column prop="type" label="类别">
@ -288,7 +288,7 @@
<el-table-column prop="date" label="出库后库存">
<el-table-column prop="totalQuantity" label="数量">
<template slot-scope="scope">
{{ scope.row.totalQuantity || 0 }}
{{ scope.row.totalQuantity<0?0: scope.row.totalQuantity}}
</template>
</el-table-column>
</el-table-column>

Loading…
Cancel
Save