|
|
@@ -31,6 +31,9 @@
|
|
|
<view class="popup-item" @click="getRechargeList(item)">
|
|
|
<text>充值记录</text>
|
|
|
</view>
|
|
|
+ <view class="popup-item" @click="toPay(item)">
|
|
|
+ <text>付款</text>
|
|
|
+ </view>
|
|
|
<view class="popup-item" @click="hideMoreOptions()">
|
|
|
<text>取消</text>
|
|
|
</view>
|
|
|
@@ -209,6 +212,10 @@ export default {
|
|
|
hideMoreOptions() {
|
|
|
this.activePopupIndex = -1;
|
|
|
},
|
|
|
+ toPay(item){
|
|
|
+ this.hideMoreOptions()
|
|
|
+ this.pageTo({ url:'/pages/pay/index?account='+item.shopId+'&hdId='+item.id+'&hdName='+item.name+'&store=0&fromType=3'})
|
|
|
+ },
|
|
|
getRechargeList(item){
|
|
|
this.hideMoreOptions()
|
|
|
this.pageTo({ url:'/pages/recharge/list?account='+item.shopId+'&hdId='+item.id+'&hdName='+item.name})
|