123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- <cu-custom isBack="{{true}}">
- <view slot="backText">返回</view>
- <view slot="content">交易大厅</view>
- </cu-custom>
- <scroll-view scroll-y class="scrollPage">
- <view class="tark-list" wx:for="{{list}}" wx:key="id" wx:for-index="index">
- <view class="cu-list menu-avatar" bindtap="goDetail" data-id="{{item.id}}">
- <!-- 任务详情 -->
- <view class="padding text-grey bg-white">
- <view class="text-cut">
- <view class="fl w100"> 供应编号: </view>
- <text class="text-blue">{{item.id}}</text>
- </view>
- <view class="margin-top-sm">
- <view class="fl w100">公司名称 : </view>
- <text class="text-blue"> {{item.company}} </text>
- </view>
- <view class="margin-top-sm">
- <view class="fl w100">交易产品 : </view>
- <text class="text-blue"> {{item.product}} </text>
- </view>
- <view class="margin-top-sm">
- <view class="fl w100">交易数量 : </view>
- <text class="text-blue">{{item.amount}}{{item.unit}} </text>
- </view>
- <view class="margin-top-sm">
- <view class="fl w100">交易金额: </view>
- <text class="text-blue">¥{{item.fee/100}}元</text>
- </view>
-
- <view class="margin-top-sm">
- <view class="fl w100">交易时间 : </view>
- <text class="text-blue">{{item.finish_at}}</text>
- </view>
-
- </view>
- </view>
- </view>
- <view wx:if="{{from==-1}}" class="flex-sub text-center">
- <view class="padding">没有更多了</view>
- <view class='cu-tabbar-height'></view>
- </view>
-
- <view class='cu-tabbar-height'></view>
- </scroll-view>
- <view class='cu-load load-modal' wx:if="{{loadModal}}">
- <view class='cuIcon-emojifill text-orange'></view>
- <view class='gray-text'>加载中...</view>
- </view>
|