feat: 首付分期功能实现 - 项目初始化提交
- 添加首付分期功能相关表结构和数据 - 实现首付分期策略管理 - 添加首付分期支付详情管理 - 完善项目相关功能模块 - 修复外键类型问题 - 添加相关初始化脚本和文档
This commit is contained in:
29
ruoyi-ui/env.d.ts
vendored
Normal file
29
ruoyi-ui/env.d.ts
vendored
Normal file
@ -0,0 +1,29 @@
|
||||
/// <reference types="vite/client" />
|
||||
|
||||
// Vue模块声明
|
||||
declare module '*.vue' {
|
||||
import type { DefineComponent } from 'vue'
|
||||
const component: DefineComponent<{}, {}, any>
|
||||
export default component
|
||||
}
|
||||
|
||||
// 环境变量接口
|
||||
interface ImportMetaEnv {
|
||||
readonly VITE_APP_TITLE: string
|
||||
readonly VITE_APP_ENV: string
|
||||
readonly VITE_APP_BASE_API: string
|
||||
readonly VITE_APP_VERSION: string
|
||||
readonly VITE_BUILD_VERSION: string
|
||||
readonly [key: string]: any
|
||||
}
|
||||
|
||||
interface ImportMeta {
|
||||
readonly env: ImportMetaEnv
|
||||
}
|
||||
|
||||
// API模块通配符声明
|
||||
declare module '@/api/system/*' {
|
||||
const content: any
|
||||
export default content
|
||||
export * from '@/api/system/*'
|
||||
}
|
||||
Reference in New Issue
Block a user