vr-shopxo-source/sourcecode/weixin/default/pages/common/nodata.wxml

18 lines
596 B
Plaintext
Raw Normal View History

2018-12-29 10:39:25 +00:00
<template name="nodata">
<!-- 1 加载中 -->
<view wx:if="{{status == 1}}" class="no-data-loding tc">
<text>加载中...</text>
</view>
<!-- 2 处理错误 -->
<view wx:elif="{{status == 2}}" class="no-data-box tc">
<image src="/images/error.png" mode="widthFix" />
<view class="no-data-tips">{{msg || '处理错误'}}</view>
</view>
<!-- 0 默认没有数据 -->
<view wx:elif="{{status == 0}}" class="no-data-box tc">
<image src="/images/empty.png" mode="widthFix" />
2019-07-11 16:20:32 +00:00
<view class="no-data-tips">{{msg || '没有相关数据'}}</view>
2018-12-29 10:39:25 +00:00
</view>
</template>