<!--compontents/discuss/discuss.wxml-->
<view class="comment " animation="{{animationData}}">
    <view  wx:for="{{discussDatas}}" wx:key="{{item.id}}">
        <text style="color: {{uid == item.userId ? '#000' : '#f7085e'}}">{{item.featureMap.wechatName}}:</text>
        <text>{{item.content}}</text>
    </view>  
    <view class="text" wx:if="{{type == 2}}">
        <input placeholder="输入评论内容" value="{{text}}" bindinput="bindKeyInput" type="text" />
        <text bindtap="sendText">发送</text>
    </view>
</view>
<text class="unfold" data-flag="{{flag}}" bindtap="onTap">{{downUp}}</text>