detail.wxml 2.53 KB
<!--page/subPackage/pages/zeroSell/detail.wxml-->
<block wx:if="{{show}}">

<view class="header">

  <product-header product="{{product}}" avatars="{{avatars}}"></product-header>
  <view style="height: 20rpx;"></view>
</view>
<block wx:if="{{false}}">
<counter count="{{participantCount}}" num="{{product.limit}}" status="{{product.status}}"></counter>
<prize-progress step="{{step}}"></prize-progress>
</block>
  <view class="help">
    <help></help>
  </view>
<desc list="{{product.content}}" bind:tapUrl="_jumpBanner" bannerSrc="{{bannerSrc}}" bannerUrl="{{bannerUrl}}"></desc>

<view class="line"></view>

<more wx:if="{{recommends.length > 0}}">
  <block wx:for="{{recommends}}">
    <view class="product-item" >
      <product-item product="{{item}}"></product-item>
    </view>
  </block>
</more>

<view class="fellow-bar" wx:if="{{product.status}}">
  <fellow-bar></fellow-bar>
</view>

<view class="action-bar">
  <action-bar wx:if="{{isLogin}}" status="{{actionStatus}}" num="{{myPrizeCount}}" share-uid="{{shareUid}}" act-prize-id="{{actPrizeId}}" bindgetcode="changeActionStatus" bindshare="share" bind:requireauth="requireAuth"
   ></action-bar>

   <block wx:else>
     <view class="action-bar2">
        <view class="action-item action-list" bindtap="goList">
          <image class="action-image" src="./images/list_icon@2x.png"></image>
        </view>

        <block wx:if="{{product.status === 2}}">
          <button class="action-item confirm" open-type="{{!hasUnionID ? 'getUserInfo':'getPhoneNumber'}}" bindgetphonenumber="getPhoneNumber" bindgetuserinfo='getUserInfo'>0元参加抽奖</button>
        </block>

        <block wx:else>
          <view class="action-item over">活动已结束</view>
        </block>
     </view>
   </block>
</view>

<view class="foot"></view>

</block>

<import src="../../vendors/zanui/actionsheet/index.wxml" />
<template is="zan-actionsheet" data="{{...actionsheet}}" />

<import src="../../vendors/zanui/toast/index.wxml"/>
<template is="zan-toast" data="{{zanToast}}"/>

<import src="../../vendors/toast/wetoast.wxml"/>
<template is="wetoast" data="{{...__wetoast__}}"/>

<!-- <quickNavigation id="quickNavigation" isShowIndicator="{{false}}" isShowShopCart="{{false}}" marginBottom="{{190}}"></quickNavigation> -->

<zero-alert wx:if="{{showAuth}}" >
  <view class="auth-content">OOPS 用户尚未授权登录</view>
  <button class="auth-foot action-item confirm" open-type="{{!hasUnionID ? 'getUserInfo':'getPhoneNumber'}}" bindgetphonenumber="getPhoneNumber" bindgetuserinfo='getUserInfo'>授权登录</button>
</zero-alert>