|
@@ -69,9 +69,9 @@
|
|
|
<div>{{ row.properties || "--" }}</div>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column label="采购成本(元)" prop="purchaseCost" min-width="80" >
|
|
|
+ <el-table-column label="采购成本(单价)" prop="purchaseCost" min-width="80" >
|
|
|
<template slot-scope="{ row }">
|
|
|
- <div>{{ $numberFormat(row.purchaseCost) }}</div>
|
|
|
+ <div>¥{{ $numberFormat(row.purchaseCost) }}</div>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
<el-table-column label="库存" prop="quantity" min-width="80" />
|
|
@@ -95,9 +95,9 @@
|
|
|
<el-table-column label="总库存" prop="totalQuantity" min-width="50" />
|
|
|
<el-table-column label="总已核销" prop="totalVerifyQty" min-width="50" />
|
|
|
<el-table-column label="剩余总库存" prop="totalRemainQty" min-width="55" />
|
|
|
- <el-table-column label="总采购成本(元)" min-width="70">
|
|
|
+ <el-table-column label="总采购成本" min-width="70">
|
|
|
<template slot-scope="{ row }">
|
|
|
- <div>{{ $numberFormat(row.totalPurchaseCost) }}</div>
|
|
|
+ <div>¥{{ $numberFormat(row.totalPurchaseCost) }}</div>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
<el-table-column label="结算库存" prop="totalSettleQty" min-width="50" />
|