Non puoi selezionare più di 25 argomenti
Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
|
- <!--pages/index/detail/index.wxml-->
- <view>
- <swiper class="index-slide" autoplay="true" circular="false">
- <block wx:for="{{imglist}}" wx:key="unique">
- <swiper-item>
- <image src="{{item}}" class="index-slide-image" mode='widthFix' />
- </swiper-item>
- </block>
- </swiper>
- <view class='merchant-detail'>
- <!-- 品牌信息 -->
- <view class='merchant-brand' style='position:relative;z-index:9'>
- <view>
- <image src='{{data.merchantImgUrl}}' mode='aspectFill'></image>
- </view>
- <view>
- <text>{{data.merchantName}}</text>
- <text>{{data.title}}</text>
- </view>
- <view class='fenxiang' wx:if="{{data.type!=50&&data.type!=51}}">
- <image class="fenxiang" src='{{share01}}' mode="widthFix"></image>
- <button class='share user-motto' data-id='{{data.id}}' data-couponId='{{data.couponId}}' data-title='{{data.title}}' id="shareBtn" open-type="share" hover-class="other-button-hover"></button>
- </view>
- </view>
- <!-- 一个商铺 -->
- <!-- 多个商铺 -->
- <view class='merchant-shop'>
- <view>
- <view>
- <text>商户位置</text>
- </view>
- <view class='merchants'>
- <text wx:for="{{shopVoList}}" wx:key="{{index}}">{{item.buildingName}}{{item.floorName}}--{{item.shopNumber}}</text>
- </view>
- </view>
- </view>
- <!-- 联系方式 -->
- <view class='merchant-phone'>
- <view>
- <text>联系商户</text>
- </view>
- <view>
- <view style='display:block;text-align:left;margin-right:20rpx;'>
- <text>{{data.merchantLinkPhone}}</text>
- </view>
- <image bindtap='phone' data-merchantLinkPhone='{{data.merchantLinkPhone}}' class="tel" src="{{teljpgUrl}}" mode="widthFix" />
- </view>
- </view>
- <!-- 商户简介 -->
- <view class="swiper-tab">
- <view class="swiper-tab-item">商家简介</view>
- </view>
- <view class='intro'>
- <text wx:if="{{data.summary}}">{{data.summary}}</text>
- <text wx:else>信息完善中,敬请期待。</text>
- </view>
- <view class='merchant-phones' style='margin-top:30rpx;' wx:if="{{couponList.length!=0}}">
- <view class="swiper-tab">
- <view class="swiper-tab-item">优惠信息</view>
- </view>
- <view>
- <view class='coupons clearfix'>
- <c-coupons wx:for="{{couponList}}" paramAtoB="{{loading}}" wx:key="unique" data="{{item}}" list="{{couponList}}" />
- </view>
- <view class='dingdan' wx:if="{{list.length==0}}">
- <image src="{{actUrl}}" mode="widthFix"></image>
- <text>请您敬请期待</text>
- <text>我们正在筹备一大波优惠活动</text>
- </view>
- <view class="loading" wx:if="{{loading}}">
- <image src="{{loadingUrl}}" mode="widthFix"></image>{{content}}</view>
- <view class='loadingtext' wx:if="{{loadingtext}}">{{loadingtext}}</view>
- </view>
- <view class='merchant-info'>
- <view hidden='currentTabsIndex!=0'>
- <text wx:if="{{data.summary}}">{{data.summary}}</text>
- </view>
- </view>
- </view>
- </view>
- </view>
|