<!--pages/myNews/myNews.wxml-->
<custom-navi text="我的咨询" back="{{true}}" home="{{true}}" bg1="#fff" bg2="#fff" bg3="#fff"></custom-navi>

<view class="hotFaqs">
  <view bindtap='faqDetail' wx:for="{{faqList}}" class="faqItem" data-index="{{item.id}}" wx:key="{{index}}">
    <view class="faqCol1">
      <view class="faqContent">
        <view></view>
        <text>{{item.content}}</text>
      </view>
      <view class="faqReplycount">回复:{{item.reply_count}}</view>
    </view>
    <view class="delFaqButton" data-index='{{item.id}}' bindtap='delFaq'>删除</view>
  </view>

</view>

<view bindtap='newFaq' class="newFaqButton">
		<view>立即咨询</view>
	</view>
<van-dialog id="van-dialog" />
<van-notify id="van-notify" />