新增营销系统、分销系统、会员功能、门店、提现功能

This commit is contained in:
Shaw
2024-02-08 20:58:15 +08:00
parent 5beda076d0
commit 203d100305
286 changed files with 37029 additions and 765 deletions

View File

@ -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
View File

@ -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