index.wxml 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. <view class="container">
  2. <!-- 导航栏 -->
  3. <van-nav-bar custom-style="background-color: #fff">
  4. <van-icon slot="left" name="arrow-left" size="25px" color="#333" bind:click="backToParent"/>
  5. <text slot="title" style="color: #333;">我要出售</text>
  6. </van-nav-bar>
  7. </view>
  8. <!-- tabs -->
  9. <view class="tab-view">
  10. <van-tabs swipeable bind:change="onTabChange" color="#2270D9" title-active-color="#2270D9" title-inactive-color="#8F8AA6">
  11. <van-tab wx:for="{{tabs}}" wx:for-item="itm" wx:key="id" id="{{itm.id}}" title="{{itm.name}}"/>
  12. </van-tabs>
  13. </view>
  14. <scroll-view class="scroll-view">
  15. <!-- 列头 -->
  16. <view class="title-view" style="width: 100%;">
  17. <text class="title-view-text" wx:for="{{titles}}" wx:for-index="idx" wx:for-item="itm" wx:key="idx" id="idx">{{itm}}</text>
  18. </view>
  19. <!-- 列表项 -->
  20. <view class="list-item">
  21. <view class="list-item-left">
  22. <text>公主方形(Princess)</text>
  23. <text>¥21,002.00</text>
  24. <text>¥21,002.00</text>
  25. </view>
  26. <view class="list-item-right">
  27. <text>E-J | FL-VS1 | SZ001 | 10.00 | 10.00</text>
  28. <text>平均单颗重量:0.50</text>
  29. <text>冻结重量 :0.00</text>
  30. <text>商品编号: a0031D001</text>
  31. </view>
  32. </view>
  33. <!-- 提交按钮视图 -->
  34. <view class="submit-view" style="position: relative; padding-bottom: {{safeBottom}}px;">
  35. <button bindtap="toSubmit">卖出</button>
  36. <button bindtap="toSubmit">取消</button>
  37. </view>
  38. </scroll-view>