feat: 首付分期功能实现 - 项目初始化提交

- 添加首付分期功能相关表结构和数据
- 实现首付分期策略管理
- 添加首付分期支付详情管理
- 完善项目相关功能模块
- 修复外键类型问题
- 添加相关初始化脚本和文档
This commit is contained in:
Admin
2025-09-11 17:03:58 +08:00
commit 9f5a484689
1221 changed files with 114835 additions and 0 deletions

35
ruoyi-ui/tsconfig.json Normal file
View File

@ -0,0 +1,35 @@
{
"$schema": "https://json.schemastore.org/tsconfig",
"compilerOptions": {
"baseUrl": ".",
// https://vite.dev/config/build-options.html#build-target
"target": "ES2020",
"module": "ESNext",
"moduleResolution": "Bundler",
"lib": ["ESNext", "DOM", "DOM.Iterable"],
"skipLibCheck": true,
// This setting lets you specify a file for storing incremental compilation information as a part of composite projects which enables faster building of larger TypeScript codebases.
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.tsbuildinfo",
"strict": true,
"allowJs": true,
"jsx": "preserve",
"sourceMap": true,
"resolveJsonModule": true,
"esModuleInterop": true,
"noEmit": true,
"paths": {
"@/*": ["./src/*"]
},
"types": ["node", "vite/client"],
// 自定义配置
"noImplicitAny": false, // 禁用 隐式的any错误
"removeComments": true, // 移除 ts注释
"experimentalDecorators": true, // 启用实验性的装饰器支持
"strictFunctionTypes": false, // 禁用严格函数类型检查
"strictNullChecks": false, // 禁用严格的空值检查
"allowSyntheticDefaultImports": true, // 允许默认导入
"forceConsistentCasingInFileNames": true // 强制在文件名中使用一致的大小写
},
"include": ["src/**/*.ts", "src/**/*.vue", "vite.config.ts", "vitest.config.ts", "eslint.config.ts", "**/*.d.ts", "env.d.ts"],
"exclude": ["node_modules", "dist", "src/**/__tests__/*"]
}