formal_basic
hejiangbo 2 weeks ago
parent 5198344374
commit 58fee9376f

@ -9,7 +9,7 @@
{{nickname == null || nickname == ''? '未登录': nickname }}
</view>
</view>
<view class="position_recharge">
<view class="position_recharge" v-if="isLogin">
<view>
<view>账户余额</view>
<view>
@ -17,11 +17,11 @@
<text style="margin-left: 8rpx"></text>
</view>
</view>
<view class="btn_recharge" v-if="isLogin" @click="handle_recharge"></view>
<view class="btn_recharge" @click="handle_recharge"></view>
</view>
</view>
<!-- -->
<view class="cu-card " style="margin-top: 100rpx;">
<view class="cu-card " :style="isLogin? 'margin-top: 100rpx': 'margin-top: 50rpx' ">
<view class="cu-item shadow padding-lr-sm">
<view class="flex padding-tb-sm justify-between" @click="accountBalance(1)"
v-if="now_version == '个人版'">
@ -240,7 +240,7 @@
url: '/pages/userCenter/about/about'
})
}
const goAddinvoice = () => {
if (!uni.getStorageSync("userInfo")) {
uni.showToast({
@ -259,7 +259,7 @@
// return
// }
}
const gologin = () => {
uni.navigateTo({
url: '../../pagesCenter/login/enter'

@ -36,7 +36,7 @@
付款成功
</view>
<text class="refund_moneny"
v-if="tab_current == 0 && money >= item.payPrice / 100 && item.refundStatus == 0"
v-if="tab_current == 0 && item.refundStatus == null || item.refundStatus == 0"
@click="handle_refund(item.id)">退款</text>
<text v-if="item.refundStatus == 10" class="refund_moneny_10">退</text>
</view>

Loading…
Cancel
Save