|
@@ -65,14 +65,14 @@
|
|
|
:show-cancel-button="false">
|
|
|
<view class="slot-content">
|
|
|
<view class="pay-way">
|
|
|
+ <view class="pay-way-item" @click="cashPay">
|
|
|
+ <image src="/static/img/payway-xj.png" mode=""></image>
|
|
|
+ <view>现金支付</view>
|
|
|
+ </view>
|
|
|
<view class="pay-way-item" @click="scanPay">
|
|
|
<image src="/static/img/payway-scan.png" mode=""></image>
|
|
|
<view>扫码收费</view>
|
|
|
</view>
|
|
|
- <view class="pay-way-item" @click="cashPay">
|
|
|
- <image src="/static/img/payway-xj.png" mode=""></image>
|
|
|
- <view>现金支付</view>
|
|
|
- </view>
|
|
|
<view class="pay-way-item" @click="qrPay">
|
|
|
<image src="/static/img/payway-qr.png" mode=""></image>
|
|
|
<view>收款码</view>
|
|
@@ -83,8 +83,9 @@
|
|
|
</u-modal>
|
|
|
<u-popup class="popup cashPay-popup" v-model="showCash" :mask-close-able="false" mode="center" border-radius="20" width="90%">
|
|
|
<view class="popup-title">本次收到缴费</view>
|
|
|
- <view class="popup-body">
|
|
|
- <u-input v-model="payParams.cashMoney" type="number" :border="true" :clearable="false" placeholder="请输入本次收到的金额(元)" />
|
|
|
+ <view class="popup-body u-flex">
|
|
|
+ <view class="u-flex-1 "><u-input v-model="payParams.cashMoney" type="number" :border="true" :clearable="false" placeholder="请输入本次收到的金额(元)" /></view>
|
|
|
+ <view class="u-flex-1 change">找零{{changeMoney}}元</view>
|
|
|
</view>
|
|
|
<view class="popup-footer u-flex">
|
|
|
<view class="popup-btn1" ><u-button type="primary" @click="consfimPayway">确认</u-button> </view>
|
|
@@ -124,6 +125,7 @@
|
|
|
mixins: [MescrollMixin], // 使用mixin
|
|
|
data(){
|
|
|
return{
|
|
|
+ change:'0',
|
|
|
// cashMoney:'',
|
|
|
showCash:false,
|
|
|
qrcontent:'',
|
|
@@ -156,33 +158,44 @@
|
|
|
onReachBottom() {
|
|
|
// this.getData();
|
|
|
},
|
|
|
+ computed:{
|
|
|
+ changeMoney(){
|
|
|
+ if(this.payParams.cashMoney>this.payTipsItem.price){
|
|
|
+ return this.payParams.cashMoney-this.payTipsItem.price
|
|
|
+ }else{
|
|
|
+ return 0
|
|
|
+ }
|
|
|
+ }
|
|
|
+ },
|
|
|
methods:{
|
|
|
cashPay(){
|
|
|
this.showCash = true;
|
|
|
+
|
|
|
},
|
|
|
closecashPayway(){
|
|
|
this.showCash = false;
|
|
|
},
|
|
|
consfimPayway(){
|
|
|
- if(this.payParams.cashMoney==this.payTipsItem.price){
|
|
|
- this.$u.api.cashPay(this.payParams)
|
|
|
- .then(res=>{
|
|
|
- uni.showLoading({
|
|
|
- title: '查询支付状态中'
|
|
|
- });
|
|
|
- this.timer = setInterval(() => {
|
|
|
- this.handlePayQuery(res.data.polyOrderId)
|
|
|
- }, 3000);
|
|
|
- }).catch(err=>{
|
|
|
+ if(this.payParams.cashMoney<this.payTipsItem.price){
|
|
|
this.$refs.uToast.show({
|
|
|
- title: err.msg,
|
|
|
+ title: '支付金额小于欠费金额,不能支付',
|
|
|
type: 'error',
|
|
|
});
|
|
|
- });
|
|
|
+
|
|
|
}else{
|
|
|
- this.$refs.uToast.show({
|
|
|
- title: '支付金额小于欠费金额,不能支付',
|
|
|
- type: 'error',
|
|
|
+ this.$u.api.cashPay(this.payParams)
|
|
|
+ .then(res=>{
|
|
|
+ uni.showLoading({
|
|
|
+ title: '查询支付状态中'
|
|
|
+ });
|
|
|
+ this.timer = setInterval(() => {
|
|
|
+ this.handlePayQuery(res.data.polyOrderId)
|
|
|
+ }, 3000);
|
|
|
+ }).catch(err=>{
|
|
|
+ this.$refs.uToast.show({
|
|
|
+ title: err.msg,
|
|
|
+ type: 'error',
|
|
|
+ });
|
|
|
});
|
|
|
}
|
|
|
|