mirror of
https://gitee.com/elegant_wings/dbd-meeting-wx-small.git
synced 2025-06-21 21:19:37 +08:00
38 lines
1.9 KiB
Plaintext
38 lines
1.9 KiB
Plaintext
<import src="../../../wxParse/wxParse.wxml" />
|
|
<scroll-view scroll-y="true" class="page">
|
|
<view class="header">
|
|
<view bindtap="navDetail">
|
|
<view class="detailbox">
|
|
<view style="margin-left:18%;padding: 8% 0;">
|
|
<view class="titleC"
|
|
style="overflow: hidden;white-space: nowrap;text-overflow: ellipsis;font-size:12pt;margin-bottom:6rpx;">
|
|
{{listdetail.supplierName? listdetail.supplierName:'暂无'}}
|
|
</view>
|
|
<view class="detailTextC" style="width:80%">{{listdetail.supplierAddress? listdetail.supplierAddress:'暂无'}}</view>
|
|
<view style="position:absolute;top:40rpx;left:0;text-align:center;width:144rpx;">
|
|
<image src="{{listdetail.supplierImg? IMG_NAME+listdetail.supplierImg:'/images/user-unlogin.jpg'}}"
|
|
style="width:110rpx;height:110rpx;oberflow:hidden;border-radius:20rpx;" mode="widthFix"></image>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<view style="line-height:40rpx;">
|
|
<view>{{listdetail.serviceName}}</view>
|
|
<view class="detailTextC" style="width:80%">{{listdetail.serviceDesc? listdetail.serviceDesc:''}}</view>
|
|
<view style="color:#E64F54"><text class="iconfont iconprice"
|
|
style="margin-right:20rpx;"></text>{{listdetail.price==0||!listdetail.price? '面议':listdetail.price+listdetail.priceUnit}}
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<view style="background:white;margin-top:12rpx;">
|
|
<view class="borderBottom" style="padding:2% 4%;font-size:30rpx;font-weight:600;">服务详细介绍</view>
|
|
<view style="padding:4%;box-sizing:border-box;">
|
|
<view class="wxParse" style="overflow: hidden;padding-bottom: 100rpx;">
|
|
<template is="wxParse" data="{{wxParseData:article.nodes}}" />
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</scroll-view>
|
|
<view style="padding: 0 4%;box-sizing:border-box;width: 100%;" class="btnbox">
|
|
<view class="btn" bindtap="apply">立即申请</view>
|
|
</view> |