|
|
@@ -32,7 +32,7 @@
|
|
|
<el-table-column prop="userPrice" label="单价" width="110" align="center"></el-table-column>
|
|
|
<el-table-column prop="sumPrice" label="金额" width="110" align="center">
|
|
|
<template slot-scope="scope">
|
|
|
- ¥{{ parseFloat(Number(scope.row.userPrice)*Number(scope.row.bigCount).toFixed(2)) }}
|
|
|
+ ¥{{ parseFloat((Number(scope.row.userPrice)*Number(scope.row.bigCount)).toFixed(2)) }}
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
|