28 lines
853 B
Plaintext
28 lines
853 B
Plaintext
<template>
|
|
<AdminLayout :currentPage="currentPage">
|
|
<view class="page">
|
|
<view class="header">
|
|
<text class="title">{{ title }}</text>
|
|
<text class="sub-title">页面占位 (自动生成)</text>
|
|
</view>
|
|
</view>
|
|
</AdminLayout>
|
|
</template>
|
|
|
|
<script setup lang="uts">
|
|
import { ref } from 'vue'
|
|
import AdminLayout from '@/layouts/admin/AdminLayout.uvue'
|
|
const currentPage = ref<string>('groupbuy-list')
|
|
const title = ref<string>('list')
|
|
</script>
|
|
|
|
<stylang="scss">
|
|
@import '@/uni.scss';
|
|
.page { padding: $space-lg; }
|
|
.header { padding: $space-lg; border-radius: $radius; background: $background-primary; box-shadow: $shadow-xs; }
|
|
.title { font-size: $font-size-lg; font-weight: $font-weight-bold; color: $text-primary; }
|
|
.sub-title { margin-top: $space-xs; font-size: $font-size-md; color: $text-secondary; }
|
|
</style>
|
|
|
|
|