vr-shopxo-source/sourcecode/toutiao/default/pages/common/nodata.ttml

18 lines
596 B
Plaintext
Raw Normal View History

2019-10-24 15:23:17 +00:00
<template name="nodata">
<!-- 1 加载中 -->
<view tt:if="{{status == 1}}" class="no-data-loding tc">
<text>加载中...</text>
</view>
<!-- 2 处理错误 -->
2019-12-02 08:05:01 +00:00
<view tt:elif="{{status == 2}}" class="no-data-box tc">
2019-10-24 15:23:17 +00:00
<image src="/images/error.png" mode="widthFix" />
<view class="no-data-tips">{{msg || '处理错误'}}</view>
</view>
<!-- 0 默认没有数据 -->
2019-12-02 08:05:01 +00:00
<view tt:elif="{{status == 0}}" class="no-data-box tc">
2019-10-24 15:23:17 +00:00
<image src="/images/empty.png" mode="widthFix" />
<view class="no-data-tips">{{msg || '没有相关数据'}}</view>
</view>
</template>