This commit is contained in:
唐明明
2021-11-05 17:25:16 +08:00
5 changed files with 15 additions and 13 deletions

View File

@@ -200,7 +200,7 @@
success: res => {
uni.showToast({
title: '支付成功',
duration: 10000,
duration: 3000,
mask: true,
icon: 'none'
})

View File

@@ -12,7 +12,7 @@
<view class="time">{{item.created_at}}</view>
<view class="read_at" v-if="item.read_at === ''"></view>
</view>
<no-list v-if="items.length === 0" name='no-new1' txt="空空如也~" />
<no-list v-if="items.length === 0" name='no-news' txt="空空如也~" />
</view>
</template>

View File

@@ -136,7 +136,7 @@
</view>
<view class="assets-label" @click="$Router.push({name:'walletRedProperty'})">
<view class="assets-label-name">现金红包
<image @click.stop="showHelp('wallet')" class="assets-label-icon"
<image @click.stop="showHelp('money')" class="assets-label-icon"
src="/static/user/userAssets_tips.png" />
</view>
<view class="assets-label-number">{{userData.account.cash || 0}}</view>
@@ -360,9 +360,9 @@
name:'companyApprove'
})
}).catch(err=>{
this.$refs.uToast.show({
uni.showToast({
title: err.message,
type: 'primary',
icon:'none',
duration: 3000
})
})
@@ -480,8 +480,11 @@
},
// 友情提示信息
showHelp(type) {
let title = '通证',
console.log(type)
let title = '通证钱包',
content = this.helpDoc.energy_ball.description
if (type == 'money') title = '现金红包'
if (type == 'money') content = this.helpDoc.red_bag.description
if (type == 'chip') title = '贡献值'
if (type == 'chip') content = this.helpDoc.energy_shard.description
uni.showModal({