@@ -159,7 +159,7 @@
prop="price"
label="单价"
fixed="right"
- width="90">
+ width="120">
<template slot-scope="scope">
<el-input v-model="scope.row.price" size="mini" placeholder="请输入单价" @change="priceChange(scope.row.price,scope.$index,scope.row)"></el-input>
</template>
@@ -168,7 +168,7 @@
prop="totalPrice"
label="金额"
+ width="100">
<span>{{tool.formatAmount(scope.row.totalPrice,2)}}</span>
@@ -161,7 +161,7 @@
label="单价(元)"
- width="100">
<el-input v-model="scope.row.price" size="mini" @change="priceChange(scope.row.price,scope.$index,scope.row)" :disabled="!data.disabled"></el-input>
@@ -65,7 +65,7 @@
<el-table-column
prop="discountrate"
label="折扣(%)"
- width="80"
+ width="100"
>
<div v-if="scope.row.discountDifferenceAmount >= 0 ">
@@ -125,7 +125,7 @@
width="100"
- <p><span>{{tool.formatAmount(scope.row.discountDifferenceAmount)}}</span></p>
+ <p><span>{{tool.formatAmount(scope.row.discountDifferenceAmount,2)}}</span></p>
</el-table-column>