节点中心t-1错误提示处理

This commit is contained in:
2021-11-05 14:46:45 +08:00
parent 30ff4209ab
commit 4c77d25ceb
3 changed files with 3 additions and 4 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

@@ -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

@@ -361,9 +361,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
}) })
}) })