31 lines
1.1 KiB
Plaintext
31 lines
1.1 KiB
Plaintext
<view class="orderMsg">
|
|
<view class="Tit">工单管理</view>
|
|
<view class="func">
|
|
<view class="funcItem" wx:for="{{funcList}}" bind:tap="jump" data-url="{{item.url}}">
|
|
<image src="{{item.img}}" mode="heightFix" />
|
|
<view>{{item.text}}</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
|
|
<view class="orderMsg">
|
|
<view class="Tit">平台客服</view>
|
|
<view class="orderMsgBox">
|
|
<view class="orderMsgBox_left">
|
|
<view class="orderMsgBox_left1">
|
|
<view>平台电话</view>
|
|
<view bind:tap="callPhone">{{serverInfo.customer_phone}} <van-icon name="phone-o" /></view>
|
|
</view>
|
|
<view class="orderMsgBox_left2">
|
|
<view>工作时间</view>
|
|
<view>{{serverInfo.business_hours}}</view>
|
|
</view>
|
|
</view>
|
|
<view class="orderMsgBox_right">
|
|
<image show-menu-by-longpress src="{{serverInfo.qr_code}}" mode="widthFix"/>
|
|
<span>长按保存二维码</span>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
|
|
<Footer /> |