24 lines
564 B
Plaintext
24 lines
564 B
Plaintext
<template>
|
|
<AdminLayout currentPage="dev-config-combo">
|
|
<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: 16px; }
|
|
.title { font-size: 18px; font-weight: 600; }
|
|
.tip { color: #999; margin-top: 8px; display: block; }
|
|
</style>
|
|
|