admin模块接入数据库

This commit is contained in:
comlibmb
2026-02-13 17:29:50 +08:00
parent 56209b7a75
commit ec636dc703
58 changed files with 5586 additions and 1394 deletions

View File

@@ -1,25 +1,20 @@
<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>
<text class="placeholder-title">正在跳转...</text>
</view>
</view>
</view>
</template>
<script setup lang="uts">
import { ref } from 'vue'
import { onMounted } from 'vue'
import { openRoute } from '@/layouts/admin/store/adminNavStore.uts'
// TODO: 实现 商品管理 的具体功能
const loading = ref<boolean>(false)
onMounted(() => {
openRoute('product_productList')
})
</script>
<style scoped lang="scss">