新增营销系统、分销系统、会员功能、门店、提现功能
This commit is contained in:
4
types/components.d.ts
vendored
4
types/components.d.ts
vendored
@ -1,8 +1,10 @@
|
||||
declare module 'vue' {
|
||||
declare module '*.vue' {
|
||||
import {defineComponent} from 'vue'
|
||||
export interface GlobalComponents {
|
||||
Icon: typeof import('@/components/Icon')['Icon']
|
||||
DictTag: typeof import('@/components/DictTag')['DictTag']
|
||||
}
|
||||
export default defineComponent
|
||||
}
|
||||
|
||||
export {}
|
||||
|
9
types/global.d.ts
vendored
9
types/global.d.ts
vendored
@ -1,5 +1,9 @@
|
||||
export {}
|
||||
declare global {
|
||||
interface Window {
|
||||
_AMapSecurityConfig: any
|
||||
}
|
||||
|
||||
interface Fn<T = any> {
|
||||
(...arg: T[]): T
|
||||
}
|
||||
@ -37,6 +41,11 @@ declare global {
|
||||
data: T extends any ? T : T & any
|
||||
}
|
||||
|
||||
interface PageVO<T=any>{
|
||||
list: T[]
|
||||
total: number
|
||||
}
|
||||
|
||||
interface PageParam {
|
||||
pageSize?: number
|
||||
pageNo?: number
|
||||
|
Reference in New Issue
Block a user