sadjv3/anmo-user/my/help/feedbackIndex.vue

263 lines
5.8 KiB
Vue

<!-- 帮助反馈页面 -->
<template>
<view>
<!-- <view class="text-top">常见问题</view> -->
<view class="xsads">
<view class="" style="font-size: 38rpx;color: #ffffff;font-weight: 600;">常见问题</view>
<view class="" style="font-size: 28rpx;color: #ffffff;margin-top: 10rpx;">你想咨询的问题都在这里</view>
</view>
<view class="uselist flex align-center" style="justify-content: space-evenly;">
<view class="" style="text-align: center;">
<view class=""><image src="../../static/jdskald.png" style="width: 74rpx;height: 60rpx;" ></image></view>
<view class="text-feedback" hover-class="hover" @click="goChat">联系客服</view>
</view>
<view class="" style="text-align: center;">
<view class=""><image src="../../static/bbn.png" style="width: 62rpx;height: 60rpx;" ></image></view>
<view class="text-feedback" hover-class="hover" @click="toFeedback">我要反馈</view>
</view>
</view>
<view class="bg-list">
<view v-for="(item,index) in helpClassifyList" :key="index" :title="item.helpClassifyName"
class="list-title padding-bottom">
<view class="flex align-center justify-between" @click.stop="openList(item)">
<view class="" style="font-size: 30rpx;">{{item.helpClassifyName}}</view>
<view @click.stop="openList(item)">
<image src="../static/up.png" style="width: 21rpx;height: 15rpx;" v-if="item.parentId==0">
</image>
<image src="../static/dowm.png" style="width: 21rpx;height: 15rpx;" v-else></image>
</view>
</view>
<view v-for="(problemItem,problemIndex) in item.helpWordList" :key="problemIndex" class="list-question"
hover-class="hover" @click="onClick(problemItem)" v-if="item.parentId==0">
<view class="text-item">{{problemItem.helpWordTitle}}</view>
<view class="line" v-if="problemIndex!=item.helpWordList.length-1"></view>
</view>
</view>
</view>
</view>
</template>
<script>
export default {
data() {
return {
helpClassifyList: []
}
},
onLoad() {
this.getlist()
},
methods: {
goChat() {
let kefu = this.$queue.getData('kefu'); // 用户端联系方式 1 手机号 2企业微信
let kefuPhone = this.$queue.getData('kefuPhone');
if (kefu == 1) {
uni.makePhoneCall({
phoneNumber: kefuPhone //仅为示例
});
} else {
// #ifdef MP-WEIXIN
let that = this
try {
wx.openCustomerServiceChat({
extInfo: {
url: that.$queue.getData('kefuUrl')
},
corpId: that.$queue.getData('kefuAppId'),
success(res) {},
fail(res) {
console.error(res)
}
})
} catch (error) {
console.error("catchcatch" + error)
uni.showToast({
title: '请更新至微信最新版本'
});
}
// #endif
// #ifndef MP-WEIXIN
let url = this.$queue.getData('kefuUrl');
if (url.indexOf('/pages/') !== -1 || url.indexOf('/my/') !== -1) {
uni.navigateTo({
url
});
} else {
//#ifndef H5
uni.navigateTo({
url: '/pages/index/webView?url=' + url
});
//#endif
//#ifdef H5
window.location.href = url;
//#endif
}
// #endif
}
},
openList(item) {
var oldhelpClassifyList = item
if (oldhelpClassifyList.parentId == 1) {
item.parentId = 0
} else {
item.parentId = 1
}
},
getlist() {
let data = {
types: 2
}
this.$Request.get("/app/helpWord/selectHelpList", data).then(res => {
if (res.code == 0) {
this.helpClassifyList = res.data
for (var i = 0; i < this.helpClassifyList.length; i++) {
this.helpClassifyList[i].parentId = 1
}
// this.helpClassifyList.isTrue = false
} else {
uni.showToast({
title: res.msg,
icon: 'none'
})
}
});
},
onClick(item) {
uni.navigateTo({
url: '/my/help/helpDetail?title=' + item.helpWordTitle + '&helpWordId=' + item.helpWordId,
})
},
toFeedbackList() {
let token = this.$queue.getData('token');
if (token) {
uni.navigateTo({
url: '/my/setting/chat'
});
} else {
uni.navigateTo({
url: '/my/setting/customer'
});
}
// wx.openCustomerServiceChat({
// extInfo: {
// url: this.$queue.getData('helpkefu')
// },
// corpId: 'ww025d1392786f9e51',
// success(res) {}
// })
},
toFeedback() {
uni.navigateTo({
url: '/my/feedback/index',
success: res => {},
fail: () => {},
complete: () => {}
});
}
}
}
</script>
<style>
page {
background-color: #f7f7f7;
height: 100%;
}
.xsads{
width: 100%;
height: 380rpx;
background: url(../../static/wentias.png) center;
background-size: cover;
padding: 40rpx 30rpx;
}
.bg-box {
background-color: #FFFFFF;
position: fixed;
bottom: 0;
left: 0;
right: 0;
}
.uselist{
background-color: #FFFFFF;
padding: 50rpx 30rpx;
margin-top: -200rpx;
border-radius: 10px;
width: 92%;
margin-left: 4%;
}
.bg-list{
width: 92%;
margin-left: 4%;
margin-bottom: 100rpx;
background-color: #FFFFFF;
padding: 50rpx 30rpx;
margin-top: 20rpx;
border-radius: 10px;
}
.vertical-line {
height: 20rpx;
background-color: #cecece;
width: 2rpx;
margin-left: 30rpx;
margin-right: 30rpx;
}
.line {
width: 100%;
height: 1rpx;
background-color: #d3d3d3;
}
.text-title {
color: #000;
font-size: 32rpx;
font-weight: bold;
}
.text-item {
color: #999999;
font-size: 28rpx;
padding: 24rpx 0rpx;
}
.list-title {
margin-bottom: 30rpx;
}
.list-question {
color: #000;
font-size: 28rpx;
}
.hover {
background-color: #ffffff;
opacity: 0.6;
}
.image {
width: 40rpx;
height: 40rpx;
margin-left: 20rpx;
}
.text-feedback {
font-size: 30rpx;
font-weight: 600;
margin-top: 8rpx;
}
.text-top {
margin: 30rpx;
color: #000;
font-size: 34rpx;
}
</style>