yuminge-app/yun-min-program-plugin-master/packageH/project_verification/VerificationProjectDetails/VerificationProjectDetails....

86 lines
4.3 KiB
Plaintext

<!-- packageH/project_verification/VerificationProjectDetails/VerificationProjectDetails.wxml -->
<block wx:if="{{ project }}">
<swiper class="banners" autoplay interval="5000" duration="1000" circular="false" previous-margin="false" next-margin="0px" display-multiple-items="1" skip-hidden-item-layout="false" bindchange="">
<swiper-item class="banner-item" item-id="" wx:for="{{ project.banner_imgs }}" wx:for-item="bannerItem" wx:key="project">
<image src="{{ bannerItem }}" mode="aspectFill" lazy-load></image>
</swiper-item>
</swiper>
<panel>
<div class="project-header">
<view class="project-title">{{ project.title }}</view>
<button class="project-share" hover-class="none" type="default" open-type="share">
<text class="iconfont icon-share"></text>
分享
</button>
</div>
</panel>
<!-- <panel title="服务商户">
<view class="service-prompt" hover-class="none" hover-stop-propagation="false">
购买{{ projectNameLang }}套餐后,即可至服务商户核销使用!
</view>
</panel> -->
<scroll-view scroll-x="{{ true }}" scroll-y="{{true}}" class="store-scroll_list">
<view class="store-item" hover-class="none" wx:for="{{ stores }}" wx:for-item="storeItem" wx:key="id" catchtap="btnStore" data-item="{{storeItem}}" style="width: {{stores.length < 2 ? '720rpx' : '600rpx'}};margin-right: {{stores.length < 2 ? '0' : '1rem'}}">
<view class="store-header">
<image class="store-cover" src="{{ storeItem.thumb }}" mode="aspectFill"></image>
<view class="store-info">
<view class="store-name" hover-class="none" hover-stop-propagation="false">
{{ storeItem.store_name }}
</view>
<view class="store-info_footer" hover-class="none" hover-stop-propagation="false">
<view class="" selectable="false" space="false" decode="false">
营业时间:{{ storeItem.business_hours_start }} - {{ storeItem.business_hours_end }}
</view>
</view>
</view>
<view class="icon_img">
<view class="" selectable="false" space="false" decode="false">
{{ storeItem.store_distance }}{{ storeItem.store_distance_unit }}
</view>
<view class="store-location iconfont icon-zx_map_local"></view>
</view>
</view>
<view class="store-address">
<text class="iconfont icon-icon_location" />
{{ storeItem.full_address }}
</view>
</view>
<navigator class="store-item store-item-multi-entry" wx:if="{{ stores.length>=5 }}" url="/packageH/project_verification/MoreStores/MoreStores?from=details&project_id={{ project.id }}">
更多商户
</navigator>
</scroll-view>
<block wx:if="{{ goods.length>0 }}">
<panel title="{{ projectNameLang }}套餐">
<view class="goods-list">
<navigator class="goods-item" hover-class="none" wx:for="{{ goods }}" wx:for-item="goodsItem" wx:key="id" url="/packageA/detail_v2/detail_v2?id={{ goodsItem.id }}">
<image class="goods-cover" src="{{ goodsItem.thumb }}" mode="aspectFill"></image>
<view class="goods-info">
<view class="goods-title" hover-class="none" hover-stop-propagation="false">
<view class="" hover-class="none" hover-stop-propagation="false">
{{ goodsItem.title }}
</view>
<!-- <view class="goods_add-cart iconfont icon-fontclass-gouwuche1"></view> -->
</view>
<view class="goods-sales" selectable="false" space="false" decode="false">
销量:{{ goodsItem.show_sales }}
</view>
<view class="goods-footer">
<view hover-class="none" hover-stop-propagation="false">
<text class="goods_market-price">¥{{ goodsItem.price }}</text>
<text class="goods-price">原价:¥{{ goodsItem.market_price }}</text>
</view>
<view class="buy-btn">抢购</view>
</view>
</view>
</navigator>
</view>
</panel>
</block>
<panel>
<view class="project-details-title">{{ projectNameLang }}详情</view>
<mp-html class="project-details" content="{{ project.content }}"></mp-html>
</panel>
</block>
<shortcutMenu></shortcutMenu>
<shopfoot></shopfoot>