| | |
| | | > |
| | | <template slot-scope="{row}"> |
| | | <!-- <div v-if="row.totalStockInQuantity">{{ row.totalStockInQuantity }}</div>--> |
| | | <div v-if="row.quantity">{{ row.quantity*0.8 }}</div> |
| | | <div v-if="row.quantity">{{ Math.round(row.quantity*0.8) }}</div> |
| | | <div v-else>0</div> |
| | | </template> |
| | | </el-table-column> |
| | |
| | | > |
| | | <template slot-scope="{row}"> |
| | | <!-- <div v-if="row.saleOutQuantity" class="ellipsis">{{ row.saleOutQuantity }}</div>--> |
| | | <div v-if="row.quantity" class="ellipsis">{{ row.quantity*0.8 }}</div> |
| | | <div v-if="row.quantity" class="ellipsis">{{ Math.round(row.quantity*0.8) }}</div> |
| | | <div v-else>0</div> |
| | | </template> |
| | | </el-table-column> |