You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
483 B
18 lines
483 B
<view class="reply-or-remark">
|
|
|
|
<view class="textarea">
|
|
<textarea
|
|
maxlength="200"
|
|
placeholder="请输入回复内容"
|
|
value="{{textareaValue}}"
|
|
bindinput="bindTextareaValue"
|
|
placeholder-class="placeholder-style">
|
|
</textarea>
|
|
<view class="num">{{textareaValue.length}}/200</view>
|
|
</view>
|
|
|
|
<view class="button-view">
|
|
<button bindtap="publish" type="default" size="mini" hover-class="hover-change">发布</button>
|
|
</view>
|
|
|
|
</view>
|