comment.wxml
532 字节
<!--pages/index/comment/comment.wxml-->
<view class="content">
<view class='content_input'>
<textarea class="areas" placeholder="{{type=='review'?'请说出你的想法':'请详细描述你的问题,我们将及时跟进解决。'}}" minlength="{{min}}" maxlength="{{max}}" bindinput="getText">
<text class="currentWordNumber">{{currentWordNumber|0}}/{{max}}</text>
</textarea>
</view>
<view class="btn" bindtap="{{type=='complain'?'submitComplain':'submitComment'}}">
<text>提交</text>
</view>
</view>