loulijun2021
2023-04-28 6c850cd09c1af59ec7977042cea8453d01d9b15e
src/views/kb/ckgl.vue
@@ -122,7 +122,7 @@
                >
                  <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>
@@ -258,7 +258,7 @@
                >
                  <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>