| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244 | <!-- 帮助反馈页面 --><template>	<view>		<!-- <view class="text-top">常见问题</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="text-title">{{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 class="bg-box">			<view class="bg-white-box">				<image src="../static/icon-letter.png" class="image"></image>				<view class="text-feedback" hover-class="hover" @click="goChat">联系客服</view>				<view class="vertical-line"></view>				<image src="../static/icon-edit.png" class="image"></image>				<view class="text-feedback" hover-class="hover" @click="toFeedback">我要反馈</view>			</view>		</view>	</view></template><script>	export default {		data() {			return {				helpClassifyList: []			}		},		onLoad() {			this.getlist()		},		methods: {			openList(item) {				var oldhelpClassifyList=item				if(oldhelpClassifyList.parentId==1){					item.parentId=0				}else{					item.parentId=1				}			},			getlist() {				let data={					types:1				}				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) {				console.log(item.helpWordId)				// return				uni.navigateTo({										url: '/my/help/helpDetail?helpWordId=' + item.helpWordId				})			},			goChat() {				let kefu = this.$queue.getData('kefu'); // 用户端联系方式 1 手机号 2企业微信 				let kefuPhone = this.$queue.getData('kefuPhone');				if (kefu == 1) {					uni.makePhoneCall({						phoneNumber: kefuPhone //仅为示例					});				}else if(kefu == 3){					uni.navigateTo({						url: '/my/setting/customer'					});				} 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 = that.$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				}			},						toFeedback() {				uni.navigateTo({					url: '/my/feedback/index',					success: res => {},					fail: () => {},					complete: () => {}				});			}		}	}</script><style>	page {		background-color: #FFFFFF;		height: 100%;	}	.bg-box {		background-color: #FFFFFF;		position: fixed;		bottom: 0;		left: 0;		right: 0;	}	.bg-list {		margin-bottom: 100rpx;		background-color: #FFFFFF;		padding: 30rpx	}	.bg-white-box {		background-color: #F7F7F7;		margin: 30rpx;		display: flex;		flex-direction: row;		justify-content: center;		align-items: center;		padding: 10rpx;		border-radius: 20rpx;		color: #000;		font-size: 32rpx;	}	.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 {		padding: 20rpx;		/* color: #000000; */	}	.text-top {		margin: 30rpx;		color: #000;		font-size: 34rpx;	}</style>
 |