faqSearch.wxml 943 Bytes
<!--pages/myNews/myNews.wxml-->
<custom-navi text="返回" back="{{true}}" home="{{true}}" bg1="#fff" bg2="#fff" bg3="#fff"></custom-navi>

<view class="searchArea">
	<text>关键词索引</text>
	<input class="input" name="keyword" placeholder="搜索从这里开始" bindinput="keywordInput" placeholder-class="input_center" value='{{keyword}}'/>
	<view bindtap="searchFaq">搜索</view>
</view>
<view class="content">
	<view class="hotFaqs">
		<view bindtap='faqDetail' wx:for="{{faqList}}" class="faqItem" data-index="{{item.id}}" wx:key="{{index}}">
			<view class="faqContent">
				<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>

	<view bindtap='newFaq' class="newFaqButton">
		<view>立即咨询</view>
	</view>
</view>