12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- <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">
- <view class="cu-avatar round lg">需</view>
- <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.unit_fee}} {{item.unit_fee=='面议'?'':('元/'+item.unit)}}
- </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.contact}}</text>
- </view>
- <view class="margin-top-sm">
- <view class="fl w100">联系电话 : </view>
- <text class="text-blue">{{item.phone}}</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>
|