| 123456789101112131415161718192021222324252627282930313233343536373839404142 |
- <view class="container">
- <!-- 导航栏 -->
- <van-nav-bar custom-style="background-color: #fff">
- <van-icon slot="left" name="arrow-left" size="25px" color="#333" bind:click="backToParent"/>
- <text slot="title" style="color: #333;">我要出售</text>
- </van-nav-bar>
- </view>
- <!-- tabs -->
- <view class="tab-view">
- <van-tabs swipeable bind:change="onTabChange" color="#2270D9" title-active-color="#2270D9" title-inactive-color="#8F8AA6">
- <van-tab wx:for="{{tabs}}" wx:for-item="itm" wx:key="id" id="{{itm.id}}" title="{{itm.name}}"/>
- </van-tabs>
- </view>
- <scroll-view class="scroll-view">
- <!-- 列头 -->
- <view class="title-view" style="width: 100%;">
- <text class="title-view-text" wx:for="{{titles}}" wx:for-index="idx" wx:for-item="itm" wx:key="idx" id="idx">{{itm}}</text>
- </view>
- <!-- 列表项 -->
- <view class="list-item">
- <view class="list-item-left">
- <text>公主方形(Princess)</text>
- <text>¥21,002.00</text>
- <text>¥21,002.00</text>
- </view>
- <view class="list-item-right">
- <text>E-J | FL-VS1 | SZ001 | 10.00 | 10.00</text>
- <text>平均单颗重量:0.50</text>
- <text>冻结重量 :0.00</text>
- <text>商品编号: a0031D001</text>
- </view>
- </view>
- <!-- 提交按钮视图 -->
- <view class="submit-view" style="position: relative; padding-bottom: {{safeBottom}}px;">
- <button bindtap="toSubmit">卖出</button>
- <button bindtap="toSubmit">取消</button>
- </view>
- </scroll-view>
|