| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- <!--moduleMine/pages/myinventorys/myinventorys.wxml-->
- <!-- tabs -->
- <view class="tab-view">
- <van-tabs swipeable bind:change="onTabChange">
- <van-tab wx:for="{{tabs}}" active="{{active}}" wx:for-item="itm" wx:key="id" id="{{itm.id}}" title="{{itm.name}}"/>
- </van-tabs>
- </view>
- <scroll-view class="scroll-view" scroll-x enable-flex>
- <!-- 列头 -->
- <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" wx:for="{{datas}}" wx:for-item="data" wx:key="ladingbillid" wx:if="{{active != 1}}">
- <view class="list-item-left">
- <text>{{data.zsshapetypedisplay}}</text>
- <text>¥{{data.price}}</text>
- <text>¥{{data.priceper}}</text>
- </view>
- <view class="list-item-right">
- <text>{{data.zscolortype1display}} | {{data.zscolortype2display}} | {{data.zsclaritytype1display}} | {{data.zsclaritytype2display}}</text>
- <text>平均单颗重量:{{data.weightavg}}</text>
- <text>冻结重量: {{data.ffreezeqty}}</text>
- <text>商品编号: {{data.goodsno}}</text>
- </view>
- </view>
- <!-- 钻石首饰 -->
- <view class="list-item" wx:for="{{datas}}" wx:for-item="data" wx:key="ladingbillid" wx:if="{{active == 1}}">
- <view class="list-item-left">
- <text>{{data.zsshapetypedisplay}}</text>
- <text>{{data.zsshapetypedisplay}}</text>
- <text>¥{{data.price}}</text>
- </view>
- <view class="list-item-right">
- <text>{{data.zscolortype1display}} | {{data.zsclaritytype1display}} | {{data.zscuttype1display}} | {{data.weight}} </text>
- <text>冻结重量:{{data.ffreezeqty}}</text>
- <text>仓库:{{data.warehousenamedisplay}}</text>
- <text>卖家 :xxx</text>
- <text>商品编号: {{data.goodsno}}</text>
- </view>
- </view>
- </scroll-view>
- <van-empty wx:if="{{isEmpty}}" class="custom-image" description="无数据"/>
|