Files
medical-mall/pages/mall/admin/app/mobile/version.uvue
2026-02-13 01:13:21 +08:00

39 lines
970 B
Plaintext

<template>
<view class="admin-page">
<view class="admin-card header-card">
<view class="title-row">
<text class="title">版本管理</text>
<button class="btn primary">添加版本</button>
</view>
</view>
<view class="admin-card content-card">
<view class="admin-table">
<view class="table-header">
<text class="cell">版本号</text>
<text class="cell">更新内容</text>
<text class="cell">强制更新</text>
<text class="cell">下载地址</text>
<text class="cell">创建时间</text>
<text class="cell actions">操作</text>
</view>
<view class="table-empty">
<text>暂无版本数据</text>
</view>
</view>
</view>
</view>
</template>
<script setup lang="uts">
// 版本管理逻辑
</script>
<style scoped>
.table-empty {
padding: 100px;
text-align: center;
color: #909399;
}
</style>