Files
HnyhuaXCX/pages/othershop0/index.wxml

49 lines
2.0 KiB
Plaintext
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<!--index.wxml-->
<import src="../../wxParse/wxParse.wxml"/>
<view class="container">
<view class="myorder-menu">
<view class='{{t==13?"hover":""}}' bindtap="onnav" data-id="0">体验区</view>
<view class='{{t==15?"hover":""}}' bindtap="onnav" data-id="1">镇街服务商</view>
</view>
<view class="choice_box">
<view class="choice_box_to">
<view class="text">
<view class="line_flag"></view>
<text>商品列表</text>
</view>
<view class="choice_list">
<view class="choice_item" wx:for="{{Products}}" wx:key="index" bindtap="gotodetail" data-id="{{item._id}}">
<view class="choice_item_box">
<view class="choice_image">
<view class="choice_image_box">
<image src="{{item.image}}"></image>
</view>
</view>
<view class="right_title">
<view class="right_name" >{{item.name}}</view>
<view class="jeto">
<view class="scje" wx:if="{{t != 7}}">零售价:<text>¥{{item.scje}}</text>
</view>
<view class="hyje">{{t == 7?"金额":"会员价"}}<text>¥{{item.hyje}}</text>
</view>
</view>
<view class="right_button" >
<view>{{t == 7?"立即申请":"立即购买"}}</view>
</view>
</view>
</view>
</view>
</view>
</view>
</view>
</view>
<loading hidden="{{loadingHidden}}">
加载中...
</loading>