hku-class/miniprogram/pages/timeline-create/index.wxml
2026-05-12 23:10:14 +08:00

34 lines
1.3 KiB
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<view class="page">
<view class="hero">
<view class="eyebrow">CLASS FEED</view>
<view class="hero-title">发布班级动态</view>
<view class="hero-subtitle">分享课程现场、活动照片、学习收获或班级提醒。</view>
</view>
<view class="section">
<view class="card">
<view class="muted">标题</view>
<input value="{{title}}" bindinput="onTitleInput" placeholder="一句话概括这条动态" />
</view>
<view class="card">
<view class="muted">正文</view>
<textarea value="{{content}}" bindinput="onContentInput" placeholder="写下想和同学分享的内容" />
</view>
<view class="card">
<view class="section-head">
<view class="card-title">图片</view>
<view class="section-action" bindtap="chooseImages">添加</view>
</view>
<view wx:if="{{images.length}}" class="image-grid">
<view wx:for="{{images}}" wx:key="*this" class="image-cell">
<image src="{{item}}" mode="aspectFill" />
<view class="image-remove" data-index="{{index}}" bindtap="removeImage">×</view>
</view>
</view>
<view wx:else class="muted">最多可添加 9 张图片</view>
</view>
</view>
<button class="button" loading="{{loading}}" bindtap="submit">发布动态</button>
</view>