|
@@ -23,13 +23,13 @@
|
|
|
<view class="search-content-value" style="color:#000;font-size: 38upx;margin-left: -11%;">查询套餐</view>
|
|
<view class="search-content-value" style="color:#000;font-size: 38upx;margin-left: -11%;">查询套餐</view>
|
|
|
<view class="search-content-text">限时优惠进行中</view>
|
|
<view class="search-content-text">限时优惠进行中</view>
|
|
|
</view>
|
|
</view>
|
|
|
- <view class="search-content" style="width: 33%;height: 180rpx;">
|
|
|
|
|
|
|
+ <view class="search-content" style="width: 33%;height: 180rpx;" @click.stop="goPayPage()">
|
|
|
<image src="../../static/payIcon.png" mode=""></image>
|
|
<image src="../../static/payIcon.png" mode=""></image>
|
|
|
<button type="primary">去购买</button>
|
|
<button type="primary">去购买</button>
|
|
|
</view>
|
|
</view>
|
|
|
</view>
|
|
</view>
|
|
|
|
|
|
|
|
- <view class="self-setting-box">
|
|
|
|
|
|
|
+ <view class="self-setting-box" @click.stop="goRechargePage()">
|
|
|
<view class="setting-content-box" style="border-bottom: 1upx solid #d9d9d9">
|
|
<view class="setting-content-box" style="border-bottom: 1upx solid #d9d9d9">
|
|
|
<view class="setting-content-text">
|
|
<view class="setting-content-text">
|
|
|
<image src="../../static/icon/moneyIcon.png" mode=""></image>
|
|
<image src="../../static/icon/moneyIcon.png" mode=""></image>
|
|
@@ -58,17 +58,12 @@
|
|
|
data() {
|
|
data() {
|
|
|
return {
|
|
return {
|
|
|
title: '个人中心页面',
|
|
title: '个人中心页面',
|
|
|
- nowHeight:'',
|
|
|
|
|
|
|
+ nowHeight:getApp().globalData.glbalHeight,
|
|
|
}
|
|
}
|
|
|
},
|
|
},
|
|
|
onLoad() {
|
|
onLoad() {
|
|
|
- this.getEquipmentHeight();
|
|
|
|
|
},
|
|
},
|
|
|
methods: {
|
|
methods: {
|
|
|
- getEquipmentHeight() {
|
|
|
|
|
- let height = uni.getSystemInfoSync().windowHeight;
|
|
|
|
|
- this.nowHeight = height + 'px';
|
|
|
|
|
- },
|
|
|
|
|
goMyAskPage(){
|
|
goMyAskPage(){
|
|
|
uni.navigateTo({
|
|
uni.navigateTo({
|
|
|
url: '../index/index',
|
|
url: '../index/index',
|
|
@@ -76,6 +71,22 @@
|
|
|
fail: () => {},
|
|
fail: () => {},
|
|
|
complete: () => {}
|
|
complete: () => {}
|
|
|
});
|
|
});
|
|
|
|
|
+ },
|
|
|
|
|
+ goRechargePage(){
|
|
|
|
|
+ uni.navigateTo({
|
|
|
|
|
+ url: './rechargeRecord/rechargeRecord',
|
|
|
|
|
+ success: res => {},
|
|
|
|
|
+ fail: () => {},
|
|
|
|
|
+ complete: () => {}
|
|
|
|
|
+ });
|
|
|
|
|
+ },
|
|
|
|
|
+ goPayPage(){
|
|
|
|
|
+ uni.navigateTo({
|
|
|
|
|
+ url: './payList/payList',
|
|
|
|
|
+ success: res => {},
|
|
|
|
|
+ fail: () => {},
|
|
|
|
|
+ complete: () => {}
|
|
|
|
|
+ });
|
|
|
}
|
|
}
|
|
|
}
|
|
}
|
|
|
}
|
|
}
|