退出登录,提现修改,扫码bug修复

This commit is contained in:
tx 2024-08-01 17:06:10 +08:00
parent c3f818ae60
commit 062c925581
4 changed files with 129 additions and 47 deletions

7
package-lock.json generated
View File

@ -326,6 +326,7 @@
}, },
"fast-xml-parser": { "fast-xml-parser": {
"version": "4.3.2", "version": "4.3.2",
"integrity": "sha512-rmrXUXwbJedoXkStenj1kkljNF7ugn5ZjR9FJcwmCfcCbtOMDghPajbc+Tck6vE6F5XsDmx+Pr2le9fw8+pXBg==",
"requires": { "requires": {
"strnum": "^1.0.5" "strnum": "^1.0.5"
} }
@ -387,7 +388,8 @@
"peer": true "peer": true
}, },
"strnum": { "strnum": {
"version": "1.0.5" "version": "1.0.5",
"integrity": "sha512-J8bbNyKKXl5qYcR36TIO8W3mVGVHrmmxsd5PAItGkmyzwJvybiw2IVq5nqd0i4LSNSkB/sx9VHllbfFdr9k1JA=="
}, },
"update-browserslist-db": { "update-browserslist-db": {
"version": "1.0.16", "version": "1.0.16",
@ -400,7 +402,8 @@
} }
}, },
"uview-ui": { "uview-ui": {
"version": "1.8.8" "version": "1.8.8",
"integrity": "sha512-Osal3yzXiHor0In9OPTZuXTaqTbDglMZ9RGK/MPYDoQQs+y0hrBCUD0Xp5T70C8i2lLu2X6Z11zJhmsQWMR7Jg=="
} }
} }
} }

View File

@ -366,7 +366,7 @@
</view> </view>
<view class="bot_btn"> <view class="bot_btn">
<view class="cont" @click="topage(1)"> <view class="cont" @click="topage(1)" v-if="areaInfo.deposit!=0">
<image src="https://lxnapi.ccttiot.com/bike/img/static/uYfTj4a3NkSNY0AqYHFc" mode=""></image> <image src="https://lxnapi.ccttiot.com/bike/img/static/uYfTj4a3NkSNY0AqYHFc" mode=""></image>
<view class="text"> <view class="text">
押金充值 押金充值
@ -4409,8 +4409,11 @@
} }
if (this.sn) { if (this.sn) {
this.deviceInfo(0) setTimeout(()=>{
this.qParam = null this.deviceInfo(0)
this.qParam = null
},500)
} }
// if(!hasShownPopup){ // if(!hasShownPopup){

View File

@ -34,7 +34,7 @@
<view class="btnbg" v-if="false"> <view class="btnbg" v-if="false">
<view class="btnbox"> <view class="btnbox">
<view class="btncard"> <view class="btncard">
<view class="card_li" @click="topage(1)"> <view class="card_li" @click="topage(1)" v-if="areaInfo.deposit!=0">
<view class="card_left"> <view class="card_left">
<image src="https://api.ccttiot.com/smartmeter/img/static/u3ILM6aE0MdFo3ZKiYPH" mode=""> <image src="https://api.ccttiot.com/smartmeter/img/static/u3ILM6aE0MdFo3ZKiYPH" mode="">
</image> </image>
@ -187,7 +187,7 @@
</view> </view>
</view> </view>
<view class="tocont"> <view class="tocont">
<view class="cont_li" @click="topage(1)"> <view class="cont_li" @click="topage(1)" v-if="areaInfo.deposit!=0">
<image src="https://lxnapi.ccttiot.com/bike/img/static/uYfTj4a3NkSNY0AqYHFc" mode=""></image> <image src="https://lxnapi.ccttiot.com/bike/img/static/uYfTj4a3NkSNY0AqYHFc" mode=""></image>
<view class="txt"> <view class="txt">
押金 押金
@ -242,6 +242,9 @@
<view class="iconfont icon-xiangyou1" ></view> <view class="iconfont icon-xiangyou1" ></view>
</view> </view>
</view> </view>
<view class="btns" @click="layout">
退出登录
</view>
<u-select v-model="show" :list="list" title='选择运营区' @confirm="confirm"></u-select> <u-select v-model="show" :list="list" title='选择运营区' @confirm="confirm"></u-select>
</view> </view>
</template> </template>
@ -265,7 +268,8 @@
show: false, show: false,
deptId: 0, deptId: 0,
statusBarHeight: 0, statusBarHeight: 0,
navBarHeight: 0 navBarHeight: 0,
areaInfo:{}
@ -291,6 +295,7 @@
onShow() { onShow() {
this.deptId = uni.getStorageSync('deptId'); this.deptId = uni.getStorageSync('deptId');
this.getuserInfo() this.getuserInfo()
this.getarea()
}, },
computed: { computed: {
maskedPhoneNumber() { maskedPhoneNumber() {
@ -303,6 +308,48 @@
} }
}, },
methods: { methods: {
getarea() {
let id = uni.getStorageSync('areaId');
this.$u.get("/app/area/" + id).then((res) => {
if (res.code == 200) {
this.areaInfo = res.data
} else {
// uni.showToast({
// title: res.msg,
// icon: 'none',
// duration: 2000
// });
}
});
},
layout(){
this.$u.post('/logout').then((res) => {
if (res.code == 200) {
//
const keys = uni.getStorageInfoSync().keys;
//
const preserveKey = 'deptId'; //
//
keys.forEach(key => {
if (key !== preserveKey) {
uni.removeStorageSync(key);
}
});
//
uni.redirectTo({
url: '/pages/index/index'
});
}
}).catch(error => {
console.error("Error fetching area data:", error);
});
},
topage(num) { topage(num) {
if (num == 0) { if (num == 0) {
// uni.navigateTo({ // uni.navigateTo({
@ -489,7 +536,18 @@
.page { .page {
width: 750rpx; width: 750rpx;
.btns{
display: flex;
align-items: center;
justify-content: center;
width: 680rpx;
height: 90rpx;
background: #64B6A7 ;
color: #fff;
font-size: 36rpx;
border-radius: 20rpx;
margin: 40rpx auto;
}
.fixed { .fixed {
z-index: 999; z-index: 999;
position: fixed; position: fixed;

View File

@ -97,6 +97,7 @@
realprice:0, realprice:0,
Quantity:0, Quantity:0,
border: false, border: false,
isThrottled:false
} }
}, },
onLoad(e) { onLoad(e) {
@ -190,44 +191,61 @@
return `${month}-${day} ${hours}:${minutes}`; return `${month}-${day} ${hours}:${minutes}`;
}, },
payBtn() { payBtn() {
if(this.realprice!=0){ if (this.realprice != 0) {
let data = { //
amount: this.realprice if (this.isThrottled) {
} uni.showToast({
this.$u.post('/appVerify/admin/withdraw',data).then((res) => { title: '请勿重复点击',
if (res.code == 200) { icon: 'none',
this.amount='' duration: 2000
this.Quantity=0 });
this.realprice=0 return;
this.price=0 }
this.list=[]
this.pageNum=1 //
this.getareaInfo() this.isThrottled = true;
this.getlist()
uni.showToast({ let data = {
title: '提现成功', amount: this.realprice,
icon: 'none', areaId: this.areaId
duration: 2000 }
}); this.$u.post('/appVerify/admin/withdraw', data).then((res) => {
if (res.code == 200) {
}else{ this.amount = ''
uni.showToast({ this.Quantity = 0
title: res.msg, this.realprice = 0
icon: 'none', this.price = 0
duration: 2000 this.list = []
}); this.pageNum = 1
} this.getareaInfo()
}).catch(error => { this.getlist()
console.error("Error fetching area data:", error); uni.showToast({
}); title: '提现成功',
}else{ icon: 'none',
uni.showToast({ duration: 2000
title: '提现金额不能为0', });
icon: 'none', } else {
duration: 2000 uni.showToast({
}); title: res.msg,
icon: 'none',
} duration: 2000
});
}
}).catch(error => {
console.error("Error fetching area data:", error);
}).finally(() => {
//
setTimeout(() => {
this.isThrottled = false;
}, 3000);
});
} else {
uni.showToast({
title: '提现金额不能为0',
icon: 'none',
duration: 2000
});
}
}, },
getareaInfo() { getareaInfo() {