26 lines
1.0 KiB
Plaintext
26 lines
1.0 KiB
Plaintext
<view class="page">
|
|
<view class="topbar">
|
|
<view class="brand">
|
|
<view class="avatar-wrap"><image class="avatar" src="https://picsum.photos/280" mode="aspectFill" /></view>
|
|
<text class="brand-text">VocabMaster</text>
|
|
</view>
|
|
</view>
|
|
<view class="content">
|
|
<view class="header">
|
|
<text class="title">批量上传</text>
|
|
<text class="subtitle">先下载模板,按模板填写后直接上传单词或句子。</text>
|
|
</view>
|
|
<view class="action-row">
|
|
<button class="action-btn ghost-btn" bindtap="downloadTemplate">下载模板</button>
|
|
<button class="action-btn primary-btn" bindtap="chooseFile">选择文件上传</button>
|
|
</view>
|
|
<view wx:if="{{fileName}}" class="info">已选择:{{fileName}}</view>
|
|
<view wx:if="{{error}}" class="error">{{error}}</view>
|
|
<view wx:if="{{result}}" class="result-card">
|
|
<text>总数:{{result.total}}</text>
|
|
<text>成功:{{result.success}}</text>
|
|
<text>失败:{{result.failed}}</text>
|
|
</view>
|
|
</view>
|
|
</view>
|