serch.wxml 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. <wxs module="filters" src="../../utils/filters.wxs"></wxs>
  2. <view class="ert" bindtap="search">
  3. <van-search value="{{ value }}" placeholder="请输入搜索关键词" shape="round" />
  4. <van-button color="#FF8C00" class="btn" round type="info" size="mini">搜索</van-button>
  5. </view>
  6. <view class="all1" wx:for="{{list}}" wx:key="id">
  7. <view class="card1">
  8. <view>
  9. <image style="width: 170rpx;height: 170rpx; margin:25rpx 35rpx 0 60rpx ;" src="../../images/tupian2.png" mode="" />
  10. </view>
  11. <view style="margin-top: 25rpx;">
  12. <view>
  13. <text style="font-size: 14px;">麻辣烫微辣</text>
  14. <van-tag color="#FF4500" style="margin-left: 10rpx;">优惠商品</van-tag>
  15. </view>
  16. <view style="margin-bottom: 10rpx;">
  17. <text style="color: #D3D3D3; font-size: 12px; margin-bottom: 10rpx;">包含香菜、菠菜、面、豆芽、海带</text>
  18. </view>
  19. <view style="margin-bottom: 10rpx;">
  20. <view style="display: flex;">
  21. <text style="font-size: 12px; font-weight: 700;">¥28.80</text>
  22. <view style="width: 55px; height: 1px; background-color: #808080; margin-left: -90rpx; margin-top: 14rpx;"></view>
  23. <text style="font-size: 12px; margin-left: 245rpx; color: #FF8C00;">限购2份</text>
  24. </view>
  25. </view>
  26. <view style="display: flex;">
  27. <view class="order-money1">
  28. ¥9.9+20积分
  29. </view>
  30. <van-stepper bind:blur="OnInput" bind:minus="prev" bind:plus="plus" bind:change="onChange" data-id="{{item.id}}" class="minus-class" min="0" value="{{ 0 }}" round button-size="20px" input-width="36px" />
  31. </view>
  32. </view>
  33. </view>
  34. </view>
  35. <view style="width: 100%;height: 86rpx;">
  36. </view>
  37. <view class="foot">
  38. <view style="display: flex;">
  39. <image style="width: 35px;height: 35px; margin: 10rpx 0 0 30rpx;" src="../../images/gouwuchekong.svg" mode="" />
  40. <view class="order-money">
  41. ¥{{filters.toFix(allMoney)}}+{{allIntegral}}积分
  42. <view style="font-size: 10px; font-weight: 400; margin-top: 6rpx;">
  43. 共优惠¥10.0
  44. <text style="color: #808080; margin-left: 20rpx;">贷款费¥0</text>
  45. </view>
  46. </view>
  47. <button class="btn1">去结算</button>
  48. </view>
  49. </view>