球星卡微信小程序
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

20 lines
338 B

import request from '@/common/request.js'
// 获取用户地址列表
export async function address(user_id) {
return await request({
url: '/api/v1/addresses',
method: 'post',
data: {
user_id
}
})
}
export async function addNewAddress(data){
return await request({
url: '/api/v1/new_addr',
method: 'post',
data
})
}