mirror of
https://gitee.com/java110/WechatOwnerService.git
synced 2026-02-23 21:36:38 +08:00
22 lines
632 B
Plaintext
22 lines
632 B
Plaintext
<!--pages/comment/comment.wxml-->
|
|
<view class="comment-container">
|
|
|
|
<!-- book name -->
|
|
<view class="book-name">
|
|
<text>{{bookInfo.name}}</text>
|
|
</view>
|
|
|
|
<!-- comment area -->
|
|
<view class="comment-area bg-white">
|
|
<textarea placeholder="关于这本书的看法..." maxlength="140" value="{{comment}}" bindinput="inputComment"></textarea>
|
|
</view>
|
|
|
|
<!-- bottom button -->
|
|
<form report-submit bindsubmit="submitComment">
|
|
<view class="fixed-bottom block-full-width flex-container bg-white">
|
|
<button class="full-button" type="primary" form-type="submit"> 提交评论 </button>
|
|
</view>
|
|
</form>
|
|
|
|
</view>
|