小程序首页公共加载顺序和我的积分展示优化
parent
77f853bc45
commit
3162b36411
|
|
@ -8,7 +8,7 @@
|
|||
</view>
|
||||
|
||||
<!-- 商城公告 -->
|
||||
<view a:if="{{(common_shop_notice || null) != null}}">
|
||||
<view a:if="{{load_status == 1 && (common_shop_notice || null) != null}}">
|
||||
<view class="tips">{{common_shop_notice}}</view>
|
||||
</view>
|
||||
|
||||
|
|
|
|||
|
|
@ -3,7 +3,7 @@
|
|||
<view class="data-card bg-white br-b" a:for="{{data_list}}">
|
||||
<view class="data-box oh">
|
||||
<import src="/pages/common/nodata.axml" />
|
||||
<text class="data-title">{{item.type_text}} {{item.new_integral}}</text>
|
||||
<text class="data-title">{{item.type_text}} {{item.operation_integral}}</text>
|
||||
<text class="data-time fr">{{item.add_time_time}}</text>
|
||||
</view>
|
||||
<view class="data-value">
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@
|
|||
</view>
|
||||
|
||||
<!-- 商城公告 -->
|
||||
<view s-if="(common_shop_notice || null) != null">
|
||||
<view s-if="load_status == 1 && (common_shop_notice || null) != null">
|
||||
<view class="tips">{{common_shop_notice}}</view>
|
||||
</view>
|
||||
|
||||
|
|
|
|||
|
|
@ -3,7 +3,7 @@
|
|||
<view class="data-card bg-white br-b" s-for="item, index in data_list">
|
||||
<view class="data-box oh">
|
||||
<import src="/pages/common/nodata.swan" />
|
||||
<text class="data-title">{{item.type_text}} {{item.new_integral}}</text>
|
||||
<text class="data-title">{{item.type_text}} {{item.operation_integral}}</text>
|
||||
<text class="data-time fr">{{item.add_time_time}}</text>
|
||||
</view>
|
||||
<view class="data-value">
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@
|
|||
</view>
|
||||
|
||||
<!-- 商城公告 -->
|
||||
<view qq:if="{{(common_shop_notice || null) != null}}">
|
||||
<view qq:if="{{load_status == 1 && (common_shop_notice || null) != null}}">
|
||||
<view class="tips">{{common_shop_notice}}</view>
|
||||
</view>
|
||||
|
||||
|
|
|
|||
|
|
@ -3,7 +3,7 @@
|
|||
<view class="data-card bg-white br-b" qq:for="{{data_list}}">
|
||||
<view class="data-box oh">
|
||||
<import src="/pages/common/nodata.qml" />
|
||||
<text class="data-title">{{item.type_text}} {{item.new_integral}}</text>
|
||||
<text class="data-title">{{item.type_text}} {{item.operation_integral}}</text>
|
||||
<text class="data-time fr">{{item.add_time_time}}</text>
|
||||
</view>
|
||||
<view class="data-value">
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@
|
|||
</view>
|
||||
|
||||
<!-- 商城公告 -->
|
||||
<view tt:if="{{(common_shop_notice || null) != null}}">
|
||||
<view tt:if="{{load_status == 1 && (common_shop_notice || null) != null}}">
|
||||
<view class="tips">
|
||||
<image src="/images/tips.png" mode="aspectFit" />
|
||||
<text>{{common_shop_notice}}</text>
|
||||
|
|
|
|||
|
|
@ -3,7 +3,7 @@
|
|||
<view class="data-card bg-white br-b" tt:for="{{data_list}}">
|
||||
<view class="data-box oh">
|
||||
<import src="/pages/common/nodata.ttml" />
|
||||
<text class="data-title">{{item.type_text}} {{item.new_integral}}</text>
|
||||
<text class="data-title">{{item.type_text}} {{item.operation_integral}}</text>
|
||||
<text class="data-time fr">{{item.add_time_time}}</text>
|
||||
</view>
|
||||
<view class="data-value">
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@
|
|||
</view>
|
||||
|
||||
<!-- 商城公告 -->
|
||||
<view wx:if="{{(common_shop_notice || null) != null}}">
|
||||
<view wx:if="{{load_status == 1 && (common_shop_notice || null) != null}}">
|
||||
<view class="tips">{{common_shop_notice}}</view>
|
||||
</view>
|
||||
|
||||
|
|
|
|||
|
|
@ -3,7 +3,7 @@
|
|||
<view class="data-card bg-white br-b" wx:for="{{data_list}}">
|
||||
<view class="data-box oh">
|
||||
<import src="/pages/common/nodata.wxml" />
|
||||
<text class="data-title">{{item.type_text}} {{item.new_integral}}</text>
|
||||
<text class="data-title">{{item.type_text}} {{item.operation_integral}}</text>
|
||||
<text class="data-time fr">{{item.add_time_time}}</text>
|
||||
</view>
|
||||
<view class="data-value">
|
||||
|
|
|
|||
Loading…
Reference in New Issue