fix(api): 替换所有接口请求的域名为 guilixu-api.websoft.top
- 将获取 STS Token 的接口地址由 paopao-api 改为 guilixu-api - 更新图片上传接口地址为新的 guilixu-api 域名 - 修改用户推广页面中邀请码链接和二维码接口的域名 - 更改注册页微信登录接口请求的域名为 guilixu-api
This commit is contained in:
19
src/api/system/user/withdraw/model/index.ts
Normal file
19
src/api/system/user/withdraw/model/index.ts
Normal file
@@ -0,0 +1,19 @@
|
||||
/**
|
||||
* 用户提现类型定义
|
||||
*/
|
||||
|
||||
export interface UserWithdraw {
|
||||
id?: number
|
||||
userId?: number
|
||||
amount?: string
|
||||
withdrawType?: number // 0-微信零钱, 1-银行卡, 2-支付宝
|
||||
accountInfo?: string
|
||||
status?: number
|
||||
createTime?: string
|
||||
}
|
||||
|
||||
export interface WithdrawRequest {
|
||||
amount: string
|
||||
withdrawType: number
|
||||
accountInfo?: string
|
||||
}
|
||||
Reference in New Issue
Block a user