C端小程序
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

37 行
1.3 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='http://img02.tooopen.com/images/20150928/tooopen_sy_143912755726.jpg'></image>
  10. </view>
  11. <view class='info'>
  12. <view>
  13. <text>{{item.detail}}</text>
  14. <text>等待付款</text>
  15. </view>
  16. <!-- <view><text>购买数量:</text>{{item.tenantId}}件</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.payment}}</text>
  25. <text>¥{{item.paymentType}}</text>
  26. </view>
  27. <view class="btn">
  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>