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

View File

@@ -21,7 +21,6 @@
* no-goods没有商品 * no-goods没有商品
* no-list没有订单列表 * no-list没有订单列表
* no-news没有任何消息 * no-news没有任何消息
* no-new1没有任何消息1
* no-chain (没有区块链信息) * no-chain (没有区块链信息)
* no-collection没有任何收藏信息 * no-collection没有任何收藏信息
* no-foot (没有足迹信息) * no-foot (没有足迹信息)

View File

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

View File

@@ -12,7 +12,7 @@
<view class="time">{{item.created_at}}</view> <view class="time">{{item.created_at}}</view>
<view class="read_at" v-if="item.read_at === ''"></view> <view class="read_at" v-if="item.read_at === ''"></view>
</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> </view>
</template> </template>

View File

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

File diff suppressed because one or more lines are too long