search.wxml 4.1 KB
<!--pages/homeindex/search/search.wxml-->
<!-- <text>pages/homeindex/search/search.wxml</text> -->
<view class='search'>
    <view class='search_inp'>
      <input type='text' placeholder='请输入商品名称' maxlength='12' bindinput='bindKeyInput' value='{{keyword}}' ></input>
      <image src='../../../img/search.png'></image>
    </view>
    <view class='search_txt' bindtap='info' wx:if='{{type}}'>
      搜索
    </view>
    <view class='search_txt' bindtap='cansle' wx:else>
      取消
    </view>
</view>
<view class='Popular'  wx:if='{{dis}}'>
  <view class='Popular_title'>
    <text>热门搜索</text>
    <image src='../../../img/zuire@3x.png'></image>
  </view>
  <view class='Popular_list' >
    <view class='Popular_item' bindtap='exchange' data-word='{{recommend[index]}}' wx:for='{{recommend}}' wx:key>  
      {{recommend[index]}}
    </view>
    
  </view>
  <view class='History' wx:if='{{history.length > 0}}'>
    <view class='History_title'>历史搜索
      <image src='../../../img/del.png' bindtap='clear'></image>
    </view>
    <view class='History_list'>
      <view class='History_item' bindtap='exchange'  wx:for='{{history}}' wx:key>{{history[index]}}</view>
    </view>
  </view>
</view>
<view class='container' bindtap='display' wx:else>
  <view class='mid'>
    <view class='ware_box' wx:for='{{shop}}' bindtap="shoptail" data-shop_id='{{item.shop_id}}'  wx:key="index">
      <view class='ware_top'>
        <view class='ware_1'>
          <image src='{{item.thumb}}'></image>
          <view class='ware_1_time'>
            据结束{{item.day}}天{{item.hou}}时{{item.min}}分{{item.sec}}秒
          </view>
        </view>
        <view class='ware_text'>
          <view class='ware_2'>
            <text class='ware_2Txt1'>{{item.name}}</text>
            <text class='ware_2Txt2'>{{item.origin}}</text>
          </view>
          <view class='ware_3'>
            <progress percent="{{item.percent}}" show-info color="#B5DE96" border-radius="8" font-size="24rpx" stroke-width="16rpx" />
          </view>
          <view class='ware_4'>
            <text>现有{{item.numb}}份,目标{{item.group}}份</text>
          </view>
          <view class='ware_5'>
            <view>
              <text class='ware5_t1'>{{item.money_sale}}</text>
              <text class='ware5_t2'>{{item.shop_type}}</text>
            </view>
            <view class='ware5_box'>
              <view class='ware5_t3'>{{item.text_table}}</view>
              <view class='ware5_t4'>{{item.text_content}}</view>
            </view>
            <view class='ware_6'>
              <view>立即参团</view>
            </view>
          </view>
        </view>
      </view>
      <view class='ware_bot'>
        <view class='ware_bot_tit'>经典推荐</view>
        <view class='ware_bot_txt'>{{item.recommend}}</view>
      </view>
    </view>
    
  </view>
  <view class='empty' wx:if="{{shop.length == 0}}">暂无更多结果</view>


</view>
<!-- 弹窗 -->
<view class="mask" catchtouchmove="preventTouchMove" wx:if="{{showModal}}"></view>
<!-- 弹出层 -->
<view class="modalDlg" wx:if="{{showModal}}">
  <view class='modalDlg_p'>
    <view class='m_top'>
      <view class='m_topImg'>
        <image src='{{shop[index].thumb}}'></image>
      </view>
      <view class='m_topTxt'>
        <view class='m_topTxt1'>
          <view class='m_topName'>{{shop[index].name}}</view>
          <image bindtap='m_close' src='../../img/cha.png'></image>
        </view>
        <view class='m_topTxt2'>
          <view class='m_topPrice'>¥{{shop[index].money_sale}}</view>
          <view class='m_topHelf'>{{shop[index].shop_type}}</view>
        </view>
      </view>
    </view>
    <view class='m_number'>
      <view class='m_numTxt'>购买数量</view>
      <view class='minus_push'>
        <view class='minus' bindtap="bindMinus">-</view>
        <view class='num' bindchange="bindManual">{{num}}</view>
        <view class='push' bindtap="bindPlus">+</view>
      </view>
    </view>
    <button class='m_btn' bindtap='goFirm_order1' data-id="{{shop[index].shop_id}}">确认</button>
  </view>
</view>