This repository has been archived on 2024-09-30. You can view files and clone it, but cannot push or open issues/pull-requests.
wxSmallApp/pages/messageEdit/messageEdit.wxml

17 lines
587 B
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

<view class="leave-message-page">
<!-- 留言标题输入区域 -->
<view class="input-group">
<text class="label">留言标题</text>
<input class="input" type="text" placeholder="请输入留言标题" maxlength="30"/>
</view>
<!-- 留言内容输入区域 -->
<view class="input-group">
<text class="label">留言内容</text>
<textarea class="textarea" placeholder="请输入留言内容最多500字" maxlength="500"></textarea>
</view>
<!-- 提交按钮 -->
<button class="submit-btn" bindtap="onSubmitMessage">提交留言</button>
</view>