|
|
@@ -59,10 +59,10 @@
|
|
|
<view class="popup-content-box">
|
|
|
<view class="popup-content">
|
|
|
<view class="popup-type">
|
|
|
- <view>开票抬头:</view><input type="text" v-model="invoiceName" />
|
|
|
+ <view>开票抬头:</view><input class="card input" style="width: 75%;" type="text" v-model="invoiceName" />
|
|
|
</view>
|
|
|
<view class="popup-type">
|
|
|
- <view>备注:</view><input type="text" v-model="invoiceRemark" />
|
|
|
+ <view>备注:</view><input class="card input" style="width: 75%;" type="text" v-model="invoiceRemark" />
|
|
|
</view>
|
|
|
</view>
|
|
|
</view>
|
|
|
@@ -103,7 +103,6 @@ export default {
|
|
|
this.getPayDetail(this.pay_code);
|
|
|
},
|
|
|
getPayDetail(payId) {
|
|
|
-
|
|
|
let url = getApp().makeApiUrl("user",'user','get_order_info');
|
|
|
let postData = {
|
|
|
code:payId,
|
|
|
@@ -154,13 +153,13 @@ export default {
|
|
|
{
|
|
|
let value = this.payInfo.part_fee - this.payInfo.reduction;
|
|
|
value = Math.round(value * 100) / 100;
|
|
|
- this.payInfo.real_fee = value;
|
|
|
+ this.payInfo.real_fee = value.toFixed(2);
|
|
|
}
|
|
|
else
|
|
|
{
|
|
|
let value = this.payInfo.total_fee - this.payInfo.reduction;
|
|
|
value = Math.round(value * 100) / 100;
|
|
|
- this.payInfo.real_fee = value;
|
|
|
+ this.payInfo.real_fee = value.toFixed(2);
|
|
|
}
|
|
|
this.payInfo.type = e.detail.value;
|
|
|
},
|
|
|
@@ -377,13 +376,6 @@ export default {
|
|
|
view {
|
|
|
width: 30%;
|
|
|
}
|
|
|
- input {
|
|
|
- border: 1px solid #d7d7d7;
|
|
|
- width: 60%;
|
|
|
- border-radius: 5rpx;
|
|
|
- padding-left: 10rpx;
|
|
|
- height: 56rpx;
|
|
|
- }
|
|
|
}
|
|
|
.popup-footer {
|
|
|
display: flex;
|