增加添加券兑换码页面

This commit is contained in:
2025-11-21 10:48:16 +08:00
parent ce3674be35
commit 0ad4b5daa7
12 changed files with 970 additions and 3 deletions

22
jsconfig.json Normal file
View File

@@ -0,0 +1,22 @@
{
"compilerOptions": {
"target": "ES6",
"module": "ESNext",
"baseUrl": ".",
"paths": {
"@/*": ["src/*"] // 适配 uni-app 的 @ 路径别名(关键,避免导入路径报错)
},
"jsx": "preserve",
"allowJs": true
},
"include": [
"src/**/*",
"pages.json",
"uni.pages.json" // 包含 uni-app 配置文件,让 Vetur 识别页面结构
],
"exclude": [
"node_modules",
"dist",
"unpackage" // 排除编译产物和依赖目录
]
}