2026-04-18 17:16:49 +08:00
|
|
|
<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>
|
2026-04-19 11:56:49 +08:00
|
|
|
<view class="content">
|
2026-04-18 17:16:49 +08:00
|
|
|
<view class="header">
|
2026-04-19 11:56:49 +08:00
|
|
|
<text class="title">批量上传</text>
|
|
|
|
|
<text class="subtitle">上传 Excel 文件导入单词或句子。</text>
|
2026-04-18 17:16:49 +08:00
|
|
|
</view>
|
2026-04-19 11:56:49 +08:00
|
|
|
<button class="primary-btn" bindtap="chooseFile">选择文件</button>
|
|
|
|
|
<view wx:if="{{fileName}}" class="info">已选择:{{fileName}}</view>
|
|
|
|
|
<view wx:if="{{result}}" class="result-card">
|
|
|
|
|
<text>总数:{{result.total}}</text>
|
|
|
|
|
<text>成功:{{result.success}}</text>
|
|
|
|
|
<text>失败:{{result.failed}}</text>
|
2026-04-18 17:16:49 +08:00
|
|
|
</view>
|
2026-04-19 11:56:49 +08:00
|
|
|
</view>
|
2026-04-18 17:16:49 +08:00
|
|
|
</view>
|