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.
11 lines
630 B
11 lines
630 B
<!-- miniprogram/subpages/clerkOnline/pages/remarkOrReply/remarkOrReply.wxml -->
|
|
<view class="remark-or-reply">
|
|
<view class="remark-content">
|
|
<textarea maxlength="500" value="{{textareaValue}}" bindinput="bindTextareaValue" bindblur="bindTextareaBlur" placeholder="{{placeholder}}" placeholder-class="textarea-placeholder"></textarea>
|
|
<view class="content-num">{{textareaValue.length}}/500</view>
|
|
</view>
|
|
<view class="topic-button" bind:tap="goPublish">
|
|
<image src="../../images/topic-button.png" class="topic-button-image" />
|
|
<text class="topic-text" >发布</text>
|
|
</view>
|
|
</view>
|