39 lines
731 B
Plaintext
39 lines
731 B
Plaintext
<template>
|
|
<AdminLayout current-page="design-user">
|
|
<view class="admin-main">
|
|
<view class="header">
|
|
<text class="title">个人中心装修</text>
|
|
</view>
|
|
<view class="content">
|
|
<text>个人中心页面装修(建设中)</text>
|
|
</view>
|
|
</view>
|
|
</AdminLayout>
|
|
</template>
|
|
|
|
<script setup lang="uts">
|
|
import AdminLayout from '@/layouts/admin/AdminLayout.uvue'
|
|
</script>
|
|
|
|
<style scoped>
|
|
.admin-main {
|
|
padding: 20px;
|
|
}
|
|
.header {
|
|
margin-bottom: 20px;
|
|
}
|
|
.title {
|
|
font-size: 20px;
|
|
font-weight: bold;
|
|
}
|
|
.content {
|
|
background-color: #fff;
|
|
padding: 20px;
|
|
border-radius: 4px;
|
|
min-height: 400px;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
</style>
|