<!--pages/myNews/myNews.wxml--> <custom-navi text="在线答疑" back="{{true}}" home="{{true}}" ></custom-navi> <view class="titleArea"> <text>亲爱的志愿者\n欢迎来到志愿者服务大厅</text> </view> <view class='topTitle'> <view class='leftLine' style="border-left: 5px solid #eb5e76;"></view> <text class="title">热门资讯</text> <view class='rightTitle' bindtap='myFaq'> <image src="/img/rpoint.png"></image> <text>我的咨询</text> </view> </view> <view class="hotFaqs"> <view bindtap='faqDetail' wx:for="{{faqList}}" class="faqItem" data-index="{{item.id}}" wx:key="{{index}}"> <view class="faqRow1"> <view class="faqCotent">{{item.content}}</view> <view class="faqReplycount">回复:{{item.reply_count}}</view> </view> <view class="faqRow2">最佳答案:{{item.best_detail_content}}</view> </view> </view> <view bindtap='newFaq' class="newFaqButton">立即咨询</view>