mirror of
https://gitee.com/hhyykk/ipms-sjy.git
synced 2025-07-13 10:35:07 +08:00
api按模块单独配置文件
This commit is contained in:
15
yudao-ui-app/api/address.js
Normal file
15
yudao-ui-app/api/address.js
Normal file
@ -0,0 +1,15 @@
|
||||
//请求工具参考https://ext.dcloud.net.cn/plugin?id=392
|
||||
const { http } = uni.$u
|
||||
|
||||
//获得用户收件地址列表
|
||||
export const getAddressList = params => http.get('/app-api/member/address/list', params)
|
||||
//创建用户收件地址
|
||||
export const createAddress = data => http.post('/app-api/member/address/create', data)
|
||||
//通过ID获得用户收件地址
|
||||
export const getAddressById = params => http.get('/app-api/member/address/get', { params })
|
||||
//获得默认的用户收件地址
|
||||
export const getDefaultUserAddress = params => http.get('/app-api/member/address/get-default', { params })
|
||||
//更新用户收件地址
|
||||
export const updateAddress = params => http.put('/app-api/member/address/update', params)
|
||||
//删除用户收件地址
|
||||
export const deleteAddress = params => http.delete('/app-api/member/address/delete', {}, { params })
|
12
yudao-ui-app/api/auth.js
Normal file
12
yudao-ui-app/api/auth.js
Normal file
@ -0,0 +1,12 @@
|
||||
//请求工具参考https://ext.dcloud.net.cn/plugin?id=392
|
||||
const { http } = uni.$u
|
||||
|
||||
//使用手机 + 密码登录
|
||||
export const passwordLogin = data => http.post('/app-api/member/login', data)
|
||||
//退出登录
|
||||
export const logout = data => http.post('/app-api/member/logout', data)
|
||||
//发送手机验证码
|
||||
export const sendSmsCode = data => http.post('/app-api/member/send-sms-code', data)
|
||||
//使用手机 + 验证码登录
|
||||
export const smsLogin = data => http.post('/app-api/member/sms-login', data)
|
||||
|
7
yudao-ui-app/api/index.js
Normal file
7
yudao-ui-app/api/index.js
Normal file
@ -0,0 +1,7 @@
|
||||
//请求工具参考https://ext.dcloud.net.cn/plugin?id=392
|
||||
const { http } = uni.$u
|
||||
|
||||
// 获取滚动图数据
|
||||
export const getBannerData = params => http.get('/app-api/index', { params })
|
||||
// 获取滚动通知数据
|
||||
export const getNoticeData = params => http.get('/app-api/notice', { params })
|
14
yudao-ui-app/api/user.js
Normal file
14
yudao-ui-app/api/user.js
Normal file
@ -0,0 +1,14 @@
|
||||
//请求工具参考https://ext.dcloud.net.cn/plugin?id=392
|
||||
const { http } = uni.$u
|
||||
|
||||
//获取用户信息
|
||||
export const getUserInfo = params => http.get('/app-api/member/user/get', params)
|
||||
//修改用户头像
|
||||
export const updateAvatar = filePath =>
|
||||
http.upload('/app-api/member/user/update-avatar', {
|
||||
name: 'avatarFile',
|
||||
fileType: 'image',
|
||||
filePath: filePath
|
||||
})
|
||||
//修改用户昵称
|
||||
export const updateNickname = params => http.put('/app-api/member/user/update-nickname', {}, { params })
|
Reference in New Issue
Block a user