C端小程序
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

37 line
1.2 KiB

  1. <view class="market">
  2. <i-tabs class='tabs' current="{{ current_scroll }}" scroll bindchange="handleChangeScroll">
  3. <i-tab class='i-tab' wx:for="{{tabs}}" wx:key="unique" key="{{item.key}}" title="{{item.name}}"></i-tab>
  4. </i-tabs>
  5. <view>
  6. <view wx:if="{{list.length!=0}}" class='section' wx:for='{{list}}' wx:key='{{index}}'>
  7. <view class='detail_msg'>
  8. <view class='logo'>
  9. <image src='{{item.coverImg}}'></image>
  10. </view>
  11. <view class='info'>
  12. <view>
  13. <text>{{item.title}}</text>
  14. <text wx:if="{{item.orderStatus==1}}">等待付款</text>
  15. </view>
  16. <view>{{item.subTitle}}</view>
  17. <view>
  18. <text>下单时间:</text>2018-07-10 11:30
  19. </view>
  20. </view>
  21. </view>
  22. <view class='payment'>
  23. <view>
  24. <text>¥{{item.salePrice/100}}</text>
  25. <text>¥{{item.price/100}}</text>
  26. </view>
  27. <view class="btn" bindtap="gotopay">
  28. <text>支付</text>
  29. </view>
  30. </view>
  31. </view>
  32. <view class="dingdan" wx:if="{{list.length==0}}">
  33. <image src="../../../assets/img/dingdan.png" mode="widthFix"></image>
  34. <text>暂无订单</text>
  35. </view>
  36. </view>
  37. </view>