• This project
    • Loading...
  • Sign in

zhouhui.jiang / test_cursor

Go to a project
Toggle navigation Toggle navigation pinning
  • Projects
  • Groups
  • Snippets
  • Help
  • Project
  • Activity
  • Repository
  • Pipelines
  • Graphs
  • Issues 0
  • Merge Requests 0
  • Wiki
  • Snippets
  • Network
  • Create a new issue
  • Builds
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Network
  • Compare
  • Branches
  • Tags
Switch branch/tag
  • test_cursor
  • frontend
  • tsconfig.json
  • jiaxing.zhou's avatar
    fix(api): 统一修改出库和发票状态更新接口参数格式 · a4f5ce25 ...
    a4f5ce25 Browse Files
    - 将 deliveryStatus 和 invoiceStatus 参数从 query 参数改为 body 参数
    - 更新相关 API 调用方式以适配新的参数传递规则
    - 确保前后端数据交互一致性
    jiaxing.zhou authored 2025-09-29 13:29:05 +0800
tsconfig.json 389 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
{
  "extends": "@vue/tsconfig/tsconfig.dom.json",
  "include": [
    "env.d.ts",
    "src/**/*",
    "src/**/*.vue",
    "auto-imports.d.ts",
    "components.d.ts"
  ],
  "exclude": ["src/**/__tests__/*", "src/views/test-menu.vue"],
  "compilerOptions": {
    "composite": true,
    "baseUrl": ".",
    "paths": {
      "@/*": ["./src/*"]
    },
    "types": ["element-plus/global"]
  }
}