完善页面8

This commit is contained in:
2026-02-24 10:35:34 +08:00
parent f814db2f12
commit 92d6e8144d
90 changed files with 1183 additions and 1887 deletions

View File

@@ -1,24 +1,18 @@
<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'
import { ref, onMounted } from 'vue'
import AdminLayout from '@/layouts/admin/AdminLayout.uvue'
const title = ref<string>('管理后台首页')
onLoad((options: OnLoadOptions) => {
onMounted(() => {
console.log('首页加载完成')
})
onShow(() => {
console.log('首页显示')
})
</script>