a661e439a0
Add the current frontend codebase with a baseline .gitignore and update piano-specific UI terms to teaching-oriented terms for the current product context. Made-with: Cursor
14 lines
608 B
Plaintext
14 lines
608 B
Plaintext
<!--index.wxml-->
|
|
<view class="container" wx:if="{{!ready}}">
|
|
<view class="name">慧添翼课后辅导系统</view>
|
|
<view class="intro">
|
|
为音乐学子提供更好的学习环境,及时查看老师的计划,随时随地提交练习作品、查看老师的批阅
|
|
</view>
|
|
<view class="loading" wx:if="{{!!token}}">
|
|
<icon type="waiting" size="93"></icon>
|
|
<view>系统加载中,请稍候...</view>
|
|
</view>
|
|
<button type="primary" wx:if="{{!token}}" bindtap="getUserProfile">开始使用</button>
|
|
</view>
|
|
<web-view wx:if="{{ready}}" src="{{url}}"></web-view>
|