Files
monisuo/monisuo-admin
sion 4f17e7ea8a fix: 修复订单审批状态不更新的问题
主要修复:
1. 添加 MetaObjectHandler 自动填充时间字段
2. 启用 @EnableTransactionManagement 显式事务管理
3. 使用 LambdaUpdateWrapper 强制更新订单状态
4. 完善 MyBatis Plus 配置和字段更新策略
5. 添加详细的调试日志配置
6. 前端集成 vconsole 调试工具

关键修改文件:
- SpcCloudApplication.java: 添加 @EnableTransactionManagement
- FundService.java: 使用 LambdaUpdateWrapper 显式更新
- MyBatisPlusMetaObjectHandler.java: 自动填充时间字段
- application-dev.yml: 完善配置和日志
- monisuo-admin: 添加 vconsole 调试工具
2026-03-24 09:41:23 +08:00
..
2026-03-22 13:55:23 +08:00
2026-03-22 13:55:23 +08:00
2026-03-22 17:23:14 +08:00
2026-03-22 13:55:23 +08:00
2026-03-22 13:55:23 +08:00
2026-03-22 13:55:23 +08:00
2026-03-22 13:55:23 +08:00
2026-03-22 13:55:23 +08:00
2026-03-22 13:55:23 +08:00
2026-03-22 13:55:23 +08:00
2026-03-22 13:55:23 +08:00
2026-03-22 13:55:23 +08:00
2026-03-22 13:55:23 +08:00
2026-03-22 13:55:23 +08:00
2026-03-22 13:55:23 +08:00
2026-03-22 13:55:23 +08:00
2026-03-22 13:55:23 +08:00
2026-03-22 16:38:57 +08:00

Shadcn Vue Admin

code style License: MIT Vue 3.5+ Vite pnpm 10+ TypeScript 5.9+

简体中文 | English

A production-grade admin dashboard UI built with Shadcn-vue, Vue 3.5+ and Vite, focusing on responsiveness, accessibility and developer experience. Forked from shadcn-admin

cover

⚠️ Version Note: This is a starter template. New components and features will be continuously added to the project.

Key Features

  • Light/Dark mode toggle with Pinia persistent state
  • Global search command palette
  • Accessible shadcn-ui sidebar navigation
  • 8+ pre-built functional pages
  • Custom component library with shadcn-vue extensions
  • Auto-generated routing system (based on file structure)
  • Internationalization support (vue-i18n v11+)
  • Form validation with VeeValidate + Zod
  • Data visualization with TanStack Table/Query & Unovis
  • Animation support (AutoAnimate, Motion-V, TW Animate CSS)

🛠️ Tech Stack & Version Constraints

Category Tools & Libraries (Major Versions)
Core Framework Vue 3.5+, TypeScript 5.9+
UI Components shadcn-vue, reka-ui 2+, lucide-vue-next 0+
Build Tool Vite, @vitejs/plugin-vue 6+
State Management Pinia 3+, pinia-plugin-persistedstate 4+
Routing vue-router 5+, vite-plugin-vue-layouts 0.11+
Styling Tailwind CSS 4+, tailwindcss-animate 1+
Data Handling TanStack Vue Query 5+, TanStack Vue Table 8+
Form Validation VeeValidate 4+, Zod 4+
Animation @formkit/auto-animate 0.9+, motion-v 1+
Internationalization vue-i18n 11+
HTTP Client axios 1+
Linting & Formatting ESLint 9+, @antfu/eslint-config 7+
Dev Tools vite-plugin-vue-devtools 8+
Auto Import unplugin-auto-import 20+, unplugin-vue-components 30+

🚀 Quick Start

Prerequisites (Strict Version Requirements)

  • Node.js ≥ 22.x (LTS recommended)
  • pnpm 10+ (Project-specified package manager)
  • TypeScript ≥ 5.9.0

Installation

  1. Clone the repository

    git clone https://github.com/Whbbit1999/shadcn-vue-admin.git
    
  2. Navigate to project directory

    cd shadcn-vue-admin
    
  3. Install dependencies

    pnpm install
    
  4. Start development server

    pnpm dev
    

Available Scripts

pnpm dev             # Start development server
pnpm build           # Build for production (vue-tsc + vite build)
pnpm preview         # Preview production build
pnpm lint            # ESLint check
pnpm lint:fix        # Auto fix lint issues
pnpm release         # Bump version with bumpp

📖 Advanced Guides

Dependency Maintenance

  • All project dependencies are updated every Tuesday UTC/GMT +8:00 to ensure security and compatibility.
  • Version constraints are strictly managed (pinned versions for critical dependencies).
  • Git hooks (pre-commit) are enabled via simple-git-hooks + lint-staged for code quality.

Theme Customization

If you need to change the website style, you can use the preset styles provided by tweakcn. You only need to copy the css variables provided by tweakcn to index.css and change the :root :dark and @theme inline parts.

Layout Customization (No index.vue in nested directories)

For pages in pages/errors/ and pages/auth/ that you dont want to use the default layout:

Create a same-name file in pages/: src/pages/errors.vue src/pages/auth.vue

<template>
  <router-view />
</template>

<route lang="yml">
meta:
  layout: false
</route>

This will generate extra empty routes like /errors/ and /auth/. To fix it, create index.vue inside the directory and add redirect:

<script lang="ts" setup>
const router = useRouter()
router.replace({ name: '/errors/404' })
</script>

📄 License

This project is licensed under the MIT License - see the LICENSE file for details.

🤝 Credits