调整商品库存报表展示的样式

This commit is contained in:
季圣华
2023-05-14 18:36:35 +08:00
parent cd55e3f831
commit 428962ee1f
2 changed files with 6 additions and 6 deletions

View File

@@ -238,9 +238,9 @@
this.dataSource = res.data.rows;
this.ipagination.total = res.data.total;
this.tableAddTotalRow(this.columns, this.dataSource)
this.currentStock = res.data.currentStock;
this.currentStockPrice = res.data.currentStockPrice;
this.currentWeight = res.data.currentWeight;
this.currentStock = res.data.currentStock.toFixed(2);
this.currentStockPrice = res.data.currentStockPrice.toFixed(2);
this.currentWeight = res.data.currentWeight.toFixed(2);
}
if(res.code===510){
this.$message.warning(res.data)