classify.wxml 2.1 KB
<!--pages/classify/classify.wxml-->
<view class='search_box' bindtap='search'>
  <view class='search'>
    <view class='search_img'>
      <image src='/images/serach.png'></image>
    </view>
   <view class='search_input'>华为 小米</view>
  </view>
</view>
<view class='box'>
  <view class='tabbar_box'>
    <view class="tabbar_item {{currenttab==0?'active':''}}" data-current='0' bindtap='chargeStyle'>手机</view>
    <view class="tabbar_item {{currenttab==1?'active':''}}" data-current='1' bindtap='chargeStyle'>电脑</view>
      <view class="tabbar_item {{currenttab==2?'active':''}}" data-current='2' bindtap='chargeStyle'>平板</view>
    <view class="tabbar_item {{currenttab==3?'active':''}}" data-current='3' bindtap='chargeStyle'>手表</view>
      <view class="tabbar_item {{currenttab==4?'active':''}}" data-current='4' bindtap='chargeStyle'>相机</view>
    <view class="tabbar_item {{currenttab==5?'active':''}}" data-current='5' bindtap='chargeStyle'>配件</view>
      <view class="tabbar_item {{currenttab==6?'active':''}}" data-current='6' bindtap='chargeStyle'>其他</view> 
  </view>

  
  <view class='content_item'>
    <view class='item_list'>
      <view class='content_title_box'>
        <view>安卓专场</view>
        <view bindtap='androidMord'>更多</view>
      </view>
      <view class='list_content_box'>
        <view class='list_content' wx:for='{{[1,2,3,4,5,6]}}' wx:key=''>
          <view class='list_content_images'>
            <image src='/images/b02@2x.png'></image>
          </view>
          <view class='content_title'>华为</view>
        </view>
      </view>
    </view>
    <view class='item_list'>
      <view class='content_title_box'>
        <view>iPhone专场</view>
        <view>更多</view>
      </view>
      <view class='list_content_box'>
        <view class='list_content' wx:for='{{[1,2,3]}}' wx:key=''>
          <view class='list_content_images'>
            <image src='/images/b02@2x.png'></image>
          </view>
          <view class='content_title'>iPhone5</view>
        </view>
      </view>
    </view>
  </view>

</view>