commentList.wxml
850 字节
<!--pages/commentList/commentList.wxml-->
<view class="page_box">
<view class="commentList">
<view class="commnetItem" wx:for='{{commentList}}' wx:key=''>
<view class="del_btn" bindtap="delComment" id='{{item.id}}'>
<image class="del_icon" src='/image/del_icon.png'></image>
</view>
<view class="coment_content">{{item.content}}</view>
</view>
</view>
<view class="add_comment">
<input class="input_box" placeholder="请输入快捷评语" wx:if='{{addAction}}' value="{{commentValue}}" focus="{{addAction}}" confirm-type="done" bindconfirm="addComment" type='text' bindinput="inputComment" bindblur="outConfirm"></input>
<view class="add_btn" bindtap="addCommentAction" wx:else>
<image class="del_icon" src="/image/add.png"></image>
添加快捷评语
</view>
</view>
</view>