Files
medical-mall/pages/mall/admin/maintain/data/city-data.uvue
2026-02-26 08:46:33 +08:00

25 lines
544 B
Plaintext

<template>
<AdminLayout currentPage="data-city-data">
<view class="page">
<view class="header">
<text class="title">城市数据</text>
</view>
<view class="content">
<text class="tip">TODO: 城市数据</text>
</view>
</view>
</AdminLayout>
</template>
<script setup lang="uts">
import AdminLayout from '@/layouts/admin/AdminLayout.uvue'
</script>
<style scoped>
.page { padding: 0; }
.title { font-size: 18px; font-weight: 600; }
.tip { color: #999; margin-top: 8px; display: block; }
</style>