65 lines
2.4 KiB
Plaintext
65 lines
2.4 KiB
Plaintext
<!--packageF/timeAppointment/AppointmentUserDe/AppointmentUserDe.wxml-->
|
|
|
|
|
|
<view class="userDetail">
|
|
<view class="usetTop">
|
|
<view class="imgbox">
|
|
<image src="{{obj_info.thumb}}" ></image>
|
|
</view>
|
|
<view class="detail">
|
|
<view class="name">{{ obj_info.name }}</view>
|
|
<view class="total">{{service_text}}次数:<text class="num">{{ obj_info.reserve_num }}</text></view>
|
|
</view>
|
|
</view>
|
|
<view class="intro {{tapShow ? '' : 'hidenShow'}}">{{ obj_info.description }}</view>
|
|
<view class="tapBottin" bindtap="setTapShow" wx:if="{{obj_info.description && obj_info.description.length >= 45}}">
|
|
<text>{{tapShow == false ? '展开' : '收起'}}</text>
|
|
<van-icon name="arrow-down" color="#888888" wx:if="{{!tapShow}}" />
|
|
<van-icon name="arrow-up" color="#888888" wx:if="{{tapShow}}" />
|
|
</view>
|
|
</view>
|
|
<view class="shop">
|
|
<view class="shoptitle">{{ store_info.name }}</view>
|
|
<view class="address">{{ store_info.full_address }}</view>
|
|
<view class="navBtn">
|
|
<view class="service" bindtap="openService">
|
|
<i class="iconfont icon-fontclass-yunkefu"></i>
|
|
客服
|
|
</view>
|
|
<view class="line"></view>
|
|
<view class="service" bindtap="goToAdress">
|
|
<i class="iconfont icon-fontclass-tuiguang2"></i>
|
|
导航
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<view class="shopDateil">
|
|
<view class="shoptitle">
|
|
<i class="iconfont icon-fontclass-shangpindingdan"></i>
|
|
{{service_text}}项目
|
|
</view>
|
|
<view class="shopList">
|
|
<view class="lis" wx:for="{{goods}}" wx:key="id" data-id="{{item.id}}" bindtap="gotoGoods">
|
|
<view class="left">
|
|
<image src="{{item.thumb}}" ></image>
|
|
</view>
|
|
<view class="right">
|
|
<view class="txt">{{ item.title }}</view>
|
|
<view class="sale">已售{{ item.total_sales }}</view>
|
|
<view class="price" wx:if="{{item.has_option==1}}">¥{{item.min_price}}</view>
|
|
<view class="price" wx:else>¥{{item.price}}</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<view class="introDetail">
|
|
<view class="txt">
|
|
<view class="line dr"></view>
|
|
<text> {{service_text}}人员详情 </text>
|
|
<view class="line dl"></view>
|
|
</view>
|
|
<mp-html content="{{obj_info.content}}"></mp-html>
|
|
</view>
|
|
|
|
|
|
<connect-customer-service show="{{ showServicePopup }}" customer_open="{{cservice_info.customer_open}}" tel="{{ cservice_info.service_mobile }}" qrcode="{{ cservice_info.service_QRcode }}" online="{{cservice_info.cservice}}" zIndex="{{1000}}"></connect-customer-service> |