12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- <cu-custom isBack="{{true}}">
- <view slot="backText">返回</view>
- <view slot="content">供应大厅</view>
- </cu-custom>
- <!-- <view class="cu-bar bg-white search fixed" style="top:{{CustomBar}}px;">
- <view class="search-form round">
- <text class="cuIcon-search"></text>
- <input type="text" placeholder="输入搜索的关键词" confirm-type="search"></input>
- </view>
- <view class="action">
- <button class="cu-btn bg-gradual-green shadow-blur round">搜索</button>
- </view>
- </view> -->
- <scroll-view scroll-y class="scrollPage" style="top:{{CustomBar}}px;">
- <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>
|