83 lines
1.5 KiB
Plaintext
83 lines
1.5 KiB
Plaintext
<template>
|
|
<view class="page-container">
|
|
<view class="page-header">
|
|
<text class="page-title">商品管理</text>
|
|
<text class="page-subtitle">Component: ProductList</text>
|
|
</view>
|
|
|
|
<view class="page-content">
|
|
<view class="placeholder-card">
|
|
<text class="placeholder-title">页面占位</text>
|
|
<text class="placeholder-desc">该功能模块正在开发中</text>
|
|
<text class="placeholder-info">当前采用 CRMEB 路由体系 1:1 映射</text>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</template>
|
|
|
|
<script setup lang="uts">
|
|
import { ref } from 'vue'
|
|
|
|
// TODO: 实现 商品管理 的具体功能
|
|
const loading = ref<boolean>(false)
|
|
</script>
|
|
|
|
<style scoped lang="scss">
|
|
.page-container {
|
|
/* 使用 Layout 的背景和内边距 */
|
|
padding: 0;
|
|
background-color: transparent;
|
|
min-height: auto;
|
|
}
|
|
|
|
.page-header {
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
.page-title {
|
|
display: block;
|
|
font-size: 24px;
|
|
font-weight: 600;
|
|
color: #333;
|
|
margin-bottom: 8px;
|
|
}
|
|
|
|
.page-subtitle {
|
|
display: block;
|
|
font-size: 14px;
|
|
color: #999;
|
|
}
|
|
|
|
.page-content {
|
|
background: #fff;
|
|
border-radius: 4px;
|
|
padding: 24px;
|
|
}
|
|
|
|
.placeholder-card {
|
|
text-align: center;
|
|
padding: 60px 20px;
|
|
}
|
|
|
|
.placeholder-title {
|
|
display: block;
|
|
font-size: 18px;
|
|
font-weight: 600;
|
|
color: #666;
|
|
margin-bottom: 12px;
|
|
}
|
|
|
|
.placeholder-desc {
|
|
display: block;
|
|
font-size: 14px;
|
|
color: #999;
|
|
margin-bottom: 8px;
|
|
}
|
|
|
|
.placeholder-info {
|
|
display: block;
|
|
font-size: 12px;
|
|
color: #1890ff;
|
|
}
|
|
</style>
|