index.wxml 4.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. <!--index.wxml-->
  2. <view class="suo">
  3. <!-- 导航栏 -->
  4. <view class='nav-wrap' style='height: {{height*2 + 20}}px;'>
  5. <view class='nav-title' style='line-height: {{height*2 + 44}}px;'>优团小栈</view>
  6. </view>
  7. <view style="height: {{height*2 + 20}}px;width: 10rpx;"></view>
  8. <!-- 标签页 -->
  9. <view class="top-tabs">
  10. <view class="tab">
  11. <view class="one" bindtap="tabsbind" wx:for="{{tabs}}" wx:key="index" data-id="{{index}}">
  12. <p style="color: {{zhong == index ? '#FF874E' : '#656565'}};">{{item}}</p>
  13. <span class="tabimg">
  14. <image wx:if="{{zhong == index}}" src="/images/foot-line.png"></image>
  15. </span>
  16. </view>
  17. </view>
  18. </view>
  19. <!-- 订阅团长 -->
  20. <view class="tinfo" wx:if="{{zhong == 0}}">
  21. <search></search>
  22. <view class="gbinfo" wx:for="{{dingyues}}" bindtap="navToTuanZhang" data-id="{{item.id}}" data-url="/pages/myhomepage/myhomepage?type=0">
  23. <view class="gb-body">
  24. <view class="gb-img">
  25. <van-image round width="132rpx" fit="cover" height="132rpx" src="{{item.headimg}}" />
  26. <!-- 未读消息角标 -->
  27. <!-- <view class="jiaobiao" wx:if="{{item.xiaoxi != 0}}">{{item.xiaoxi}}</view> -->
  28. </view>
  29. <view class="gb-content">
  30. <p class="gb-name">{{item.name}}</p>
  31. <p class="gb-jianjie">{{item.introduction}}</p>
  32. </view>
  33. <view class="gb-mess">
  34. <p wx:if="{{item.gang_number == 0}}" style="color: #656565;">暂无拼团</p>
  35. <p wx:else>{{item.gang_number}}个拼团进行中</p>
  36. </view>
  37. </view>
  38. </view>
  39. <van-empty wx:if="{{dingyues.length == null}}" description="暂无数据" />
  40. </view>
  41. <!-- 最近浏览 -->
  42. <view class="tinfo" wx:if="{{zhong == 1}}">
  43. <view style="width: 710rpx;height: 82rpx;background-color: white;border-radius: 50rpx;display: flex;align-items: center;justify-content: space-around;margin: 0 auto;">
  44. <van-icon name="search" style="font-size: 40rpx;color: #A4A4A4;margin-left: 30rpx;" />
  45. <input type="text" class="tinfoInput" placeholder-class="placeholder-style" placeholder="搜索" placeholder-style="color:#989898;" style="height: 100%;width: 84%;" value="{{goodName}}" bindconfirm="inputGoodName" bindinput="inputGoodName"></input>
  46. </view>
  47. <view class="forlate" wx:key="index">
  48. <order-card wx:for="{{pintuan}}" cardData="{{item}}" data-id="{{item.id}}" bindtap="navToPinTuanDetail"></order-card>
  49. </view>
  50. <van-empty wx:if="{{pintuan.length == 0}}" description="暂无数据" />
  51. </view>
  52. <!-- 我的订单 -->
  53. <view class="tinfo" wx:if="{{zhong == 2}}">
  54. <!-- 订单标签页 -->
  55. <view class="ordertabs">
  56. <view class="otop">
  57. <view class="ortab" wx:for="{{ordertabs}}" bindtap="ordertap" wx:key="indexs" data-oid="{{index}}" wx:for-item="items">
  58. <view style=" font-size: 28rpx;color: {{orderindex == index?'#FF874E':'#656565'}};">{{items}}</view>
  59. <view class="orderimg">
  60. <image wx:if="{{orderindex == index}}" src="/images/foot-line.png"></image>
  61. </view>
  62. </view>
  63. <view class="orderselect" style="margin-top: -10rpx;" catchtap="openSearchPopup">
  64. <image src="/images/select.png"></image>
  65. </view>
  66. </view>
  67. </view>
  68. <!-- 订单列表 -->
  69. <view class="test">
  70. <order wx:for="{{orders}}" wx:key="index" orderData="{{item}}" data-status="{{item.order_status}}" data-id="{{item.id}}" bind:share="shareOrder" bindtap="navToOrderDetail"></order>
  71. </view>
  72. <van-empty wx:if="{{orders.length == 0}}" description="暂无数据" />
  73. </view>
  74. </view>
  75. <!-- 弹出层-搜索 -->
  76. <van-popup show="{{ showSearchPopup }}" round bind:close="clsoeSearchPopup">
  77. <view style="width:710rpx;height:82rpx;background-color:white;border-radius:50rpx;display:flex;align-items:center;justify-content:space-around;">
  78. <van-icon name="search" style="font-size: 40rpx;color: #A4A4A4;margin-left: 30rpx;" />
  79. <input type="text" bindinput="inputKeyWords" placeholder="输入团长姓名进行搜索" placeholder-style="color:#989898;" style="height:100%;width: 84%;margin-left: 10rpx;"></input>
  80. <view catchtap="searchKeyWords" style="width: 200rpx;height: 100%;background-color: #FF874E;color: #FFF;text-align: center;line-height: 82rpx;">搜索</view>
  81. </view>
  82. </van-popup>