12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- <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">
- <view class="cu-item">
- <image src="/img/1.png" class="cu-avatar round lg"></image>
- <view class="content flex-sub">
- <view>{{item.product}}</view>
- <view class="text-gray text-sm flex justify-between">
- 企业:{{item.company}}
- </view>
- </view>
- </view>
- <!-- 任务详情 -->
- <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.fee/100}}元</text>
- </view>
- <view class="margin-top-sm">
- <view class="fl w100">任务类型 : </view>
- <text class="text-blue">{{item.type}}</text>
- </view>
- <view class="margin-top-sm">
- <view class="fl w100">关联公司 : </view>
- <text class="text-blue">{{item.target||'---'}}</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>
|