mirror of
https://gitee.com/bootx/dax-pay-ui
synced 2026-08-16 02:05:37 +08:00
- 从 daxpay4/daxpay4-web 同步 Vben Admin v5 版本代码 - 移除代理商模块(前端页面、API、国际化、权限码) - 清理商户页面中代理商相关引用
33 lines
668 B
TypeScript
33 lines
668 B
TypeScript
import type { RouteMeta as IRouteMeta } from '@vben-core/typings';
|
|
|
|
import 'vue-router';
|
|
|
|
declare module 'vue-router' {
|
|
// eslint-disable-next-line @typescript-eslint/no-empty-object-type
|
|
interface RouteMeta extends IRouteMeta {}
|
|
}
|
|
|
|
export interface VbenAdminProAppConfigRaw {
|
|
VITE_GLOB_API_URL: string;
|
|
VITE_GLOB_AUTH_DINGDING_CLIENT_ID: string;
|
|
VITE_GLOB_AUTH_DINGDING_CORP_ID: string;
|
|
}
|
|
|
|
interface AuthConfig {
|
|
dingding?: {
|
|
clientId: string;
|
|
corpId: string;
|
|
};
|
|
}
|
|
|
|
export interface ApplicationConfig {
|
|
apiURL: string;
|
|
auth: AuthConfig;
|
|
}
|
|
|
|
declare global {
|
|
interface Window {
|
|
_VBEN_ADMIN_PRO_APP_CONF_: VbenAdminProAppConfigRaw;
|
|
}
|
|
}
|