78 lines
2.7 KiB
Plaintext
78 lines
2.7 KiB
Plaintext
<!-- <import src="../../../wxParse/wxParse.wxml" /> -->
|
|
<view class="helpcenter">
|
|
<view class="bigbos" wx:for="{{title}}" wx:key="index">
|
|
<view class="ceshi" bindtap="show" data-index="{{index}}">
|
|
<text>{{item}}</text>
|
|
<van-icon name="arrow" />
|
|
</view>
|
|
</view>
|
|
<view class="kefu" wx:if="{{!customer_open}}">
|
|
<view style="float:left;">
|
|
<icon class="iconfont icon-kefu"></icon>
|
|
<text>人工客服</text>
|
|
</view>
|
|
<view class="fujiyuans" >
|
|
<van-icon name="arrow" />
|
|
</view>
|
|
<view class="" hover-class="none" hover-stop-propagation="false">
|
|
<button open-type="contact" class="kefuxiaoxi" bindcontact="handleContact"></button>
|
|
</view>
|
|
</view>
|
|
<view class="kefu1" bindtap="showPop" wx:if="{{customer_open}}">
|
|
<view>
|
|
<icon class="iconfont icon-kefu"></icon>
|
|
<text>人工客服</text>
|
|
</view>
|
|
<view class="fujiyuans">
|
|
<van-icon name="arrow" />
|
|
</view>
|
|
|
|
</view>
|
|
</view>
|
|
<van-popup custom-style="border-radius: 38rpx;" show="{{show1}}" overlay="{{true}}">
|
|
<view class="pop-content">
|
|
<view class="pop-top">
|
|
<view class="left">
|
|
<view class="wrap">
|
|
<view>
|
|
<view class="image" style="postion:relative">
|
|
<image src="https://mini-app-img-1251768088.cos.ap-guangzhou.myqcloud.com/kf_online_contect@2x.png"></image>
|
|
</view>
|
|
<view>在线联系</view>
|
|
<button open-type="contact" bindcontact="handleContact" style="postion:absolute;width:100%;height:80rpx;opacity:0;top:-140rpx;"></button>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<view style="display:flex;" wx:if="{{!service_mobile==''}}">
|
|
<view class="line"></view>
|
|
</view>
|
|
<view class="right" wx:if="{{!service_mobile==''}}">
|
|
<view class="wrap" bindtap="callPhone">
|
|
<view>
|
|
<view class="image">
|
|
<image src="https://mini-app-img-1251768088.cos.ap-guangzhou.myqcloud.com/kf_tel_contect@2x.png"></image>
|
|
</view>
|
|
<view>联系电话</view>
|
|
<view style="margin-top:16rpx">{{service_mobile}}</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<view class="pop-bottom" wx:if="{{!service_QRcode==''}}">
|
|
<view class="image">
|
|
<image src="{{service_QRcode}}"></image>
|
|
</view>
|
|
</view>
|
|
<icon class="iconfont icon-close11" catchtap="closePop"></icon>
|
|
</view>
|
|
</van-popup>
|
|
<van-popup custom-style="width:100%;height:100%;" show="{{showbox}}" position="right" overlay="{{false}}">
|
|
<view class="agreementContent" style="height:100%;">
|
|
<van-nav-bar title="帮助详情" left-text="" right-text="关闭" bind:click-right="msgboxclose" />
|
|
<view class="msgbox">
|
|
<mp-html content="{{msg}}"></mp-html>
|
|
<!-- <rich-text nodes="{{msg}}"></rich-text> -->
|
|
<!-- <template is="wxParse" data="{{wxParseData:article.nodes}}" /> -->
|
|
</view>
|
|
</view>
|
|
</van-popup> |