26 lines
1.5 KiB
Plaintext
Raw Normal View History

2024-02-21 17:43:11 +08:00
<scroll-view style="height:100%;padding: 0 24rpx;box-sizing: border-box;" scroll-y="true">
<view wx:if="{{homelist.length>0}}">
<view wx:for='{{homelist}}' wx:key="index" bindtap="navDetail" data-id="{{item.id}}">
<view class="detailbox">
<view style="padding: 4%;">
<view class="titleC" style="overflow: hidden;white-space: nowrap;text-overflow: ellipsis;font-size:12pt;margin:0;width: 78%;">
{{item.serviceName? item.serviceName:''}}
</view>
<view class="detailTextC" style="width: 70%;">{{item.serviceDesc? item.serviceDesc:''}}</view>
<view>
<text class="iconfont iconprice" style="color:#E64F54 !important;margin-right: 10rpx;"></text>
<text style="color:#E64F54;" wx:if="{{!item.price}}">面议</text>
<text style="color:#E64F54;" wx:else>{{item.price}}{{item.priceUnit}}</text>
</view>
<view style="position:absolute;top:20rpx;right:36rpx;text-align:center;width:144rpx;">
<image src="{{IMG_NAME+item.supplierImg}}"
style="width:90rpx;height:90rpx;oberflow:hidden;border-radius:50%;" mode="widthFix"></image>
<view style="width:100%;overflow: hidden;white-space: nowrap;text-overflow: ellipsis;">{{item.supplierName}}
</view>
</view>
</view>
</view>
</view>
</view>
<view wx:else style="text-align:center;margin-top:50%;font-size:30rpx;">暂无服务</view>
</scroll-view>