fix: 后端接口改为java,联调接口修改。

This commit is contained in:
tianyongbao
2026-01-12 00:36:05 +08:00
parent 7e10c62cf9
commit b2f7f5fe1e
21 changed files with 550 additions and 259 deletions

View File

@@ -7,9 +7,14 @@ export {}
declare global {
const BASE_URL: typeof import('../src/utils/request')['BASE_URL']
const EffectScope: typeof import('vue')['EffectScope']
const ParamsBuilder: typeof import('../src/utils/api-helper')['ParamsBuilder']
const PathBuilder: typeof import('../src/utils/api-helper')['PathBuilder']
const ResponseAdapter: typeof import('../src/utils/api-helper')['ResponseAdapter']
const alarmJudge: typeof import('../src/utils/tools')['alarmJudge']
const alarmJudgeCode: typeof import('../src/utils/tools')['alarmJudgeCode']
const apiHelper: typeof import('../src/utils/api-helper')['default']
const asd: typeof import('../src/utils/tools')['asd']
const buildUrl: typeof import('../src/utils/api-helper')['buildUrl']
const computed: typeof import('vue')['computed']
const createApp: typeof import('vue')['createApp']
const customRef: typeof import('vue')['customRef']
@@ -103,7 +108,12 @@ declare module 'vue' {
interface ComponentCustomProperties {
readonly BASE_URL: UnwrapRef<typeof import('../src/utils/request')['BASE_URL']>
readonly EffectScope: UnwrapRef<typeof import('vue')['EffectScope']>
readonly ParamsBuilder: UnwrapRef<typeof import('../src/utils/api-helper')['ParamsBuilder']>
readonly PathBuilder: UnwrapRef<typeof import('../src/utils/api-helper')['PathBuilder']>
readonly ResponseAdapter: UnwrapRef<typeof import('../src/utils/api-helper')['ResponseAdapter']>
readonly alarmJudgeCode: UnwrapRef<typeof import('../src/utils/tools')['alarmJudgeCode']>
readonly apiHelper: UnwrapRef<typeof import('../src/utils/api-helper')['default']>
readonly buildUrl: UnwrapRef<typeof import('../src/utils/api-helper')['buildUrl']>
readonly computed: UnwrapRef<typeof import('vue')['computed']>
readonly createApp: UnwrapRef<typeof import('vue')['createApp']>
readonly customRef: UnwrapRef<typeof import('vue')['customRef']>
@@ -189,7 +199,12 @@ declare module '@vue/runtime-core' {
interface ComponentCustomProperties {
readonly BASE_URL: UnwrapRef<typeof import('../src/utils/request')['BASE_URL']>
readonly EffectScope: UnwrapRef<typeof import('vue')['EffectScope']>
readonly ParamsBuilder: UnwrapRef<typeof import('../src/utils/api-helper')['ParamsBuilder']>
readonly PathBuilder: UnwrapRef<typeof import('../src/utils/api-helper')['PathBuilder']>
readonly ResponseAdapter: UnwrapRef<typeof import('../src/utils/api-helper')['ResponseAdapter']>
readonly alarmJudgeCode: UnwrapRef<typeof import('../src/utils/tools')['alarmJudgeCode']>
readonly apiHelper: UnwrapRef<typeof import('../src/utils/api-helper')['default']>
readonly buildUrl: UnwrapRef<typeof import('../src/utils/api-helper')['buildUrl']>
readonly computed: UnwrapRef<typeof import('vue')['computed']>
readonly createApp: UnwrapRef<typeof import('vue')['createApp']>
readonly customRef: UnwrapRef<typeof import('vue')['customRef']>