Files
medical-mall/pages/mall/admin/homePage/index.uvue
2026-02-11 01:19:50 +08:00

44 lines
740 B
Plaintext

<template>
<view class="admin-home-page">
<AdminLayout>
<view class="home-content">
<text class="welcome-text">管理后台首页</text>
</view>
</AdminLayout>
</view>
</template>
<script setup lang="uts">
import { ref } from 'vue'
import AdminLayout from '@/layouts/admin/AdminLayout'
const title = ref<string>('管理后台首页')
onLoad((options: OnLoadOptions) => {
console.log('首页加载完成')
})
onShow(() => {
console.log('首页显示')
})
</script>
<style scoped lang="scss">
.admin-home-page {
width: 100%;
min-height: 100vh;
}
.home-content {
padding: 20px;
background-color: #f5f7fa;
}
.welcome-text {
font-size: 20px;
font-weight: 600;
color: #1a1a1a;
}
</style>