You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
1.8 KiB
38 lines
1.8 KiB
<!--pages/user/service/list/index.wxml-->
|
|
<title title="在线客服"></title>
|
|
<view class="search-box">
|
|
<view class="iconfont icon-sousuo"></view>
|
|
<input type="text" bindinput="changeKeyword" placeholder="搜索您想问的问题"></input>
|
|
<view class="btn" bindtap="search">搜索</view>
|
|
</view>
|
|
<navigator url="../info/index?id={{item.id}}" class="ques-item textOver" wx:for="{{list}}">
|
|
<view class="ques-name textOver">{{item.question_name}}</view>
|
|
<view class="iconfont icon-you"></view>
|
|
</navigator>
|
|
<!-- <navigator url="list/index?typeid={{typeId}}" class="more-btn" bindtap="showService">没找到想要的答案?一键呼唤<text>人工客服</text></navigator> -->
|
|
<!-- <button class="more-btn" open-type="contact" bindcontact="handleContact">没找到想要的答案?一键呼唤<text>人工客服</text></button> -->
|
|
<view class="more-btn" bindtap="showDialogBtn">没找到想要的答案?一键呼唤<text>人工客服</text></view>
|
|
<!-- 弹出层 -->
|
|
<view
|
|
class="modal-mask"
|
|
bindtap="hideModal"
|
|
catchtouchmove="preventTouchMove"
|
|
wx:if="{{showModal}}"
|
|
></view>
|
|
<!-- 成功 -->
|
|
<view class="modal-dialog" wx:if="{{showModal && ses}}">
|
|
<view class="modal-title"><view class="modal-info">即将跳转人工在线客服
|
|
<view>客服服务时间:9:00-12:00,</view>
|
|
<view>13:00-18:00</view>
|
|
如遇紧急情况可拨打 <view class="green" bindtap="phoneCall"> 0512-66555111 </view><view class="green" bindtap="phoneCall2"> 18915532527 </view></view></view>
|
|
<view class="modal-footer">
|
|
<view
|
|
class="btn-confirms two"
|
|
bindtap="onConfirm"
|
|
data-status="confirm"
|
|
data-name="{{name}}"
|
|
>取消
|
|
</view>
|
|
<button class="btn-confirms" open-type="contact" bindcontact="handleContact">确定</button>
|
|
</view>
|
|
</view>
|