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.
27 lines
624 B
27 lines
624 B
import request from '@/utils/request'
|
|
|
|
// api地址
|
|
const api = {
|
|
info: 'identity/userPriceList',
|
|
submit:'identity/submit',
|
|
dealerPriceList:'identity/dealerPriceList',
|
|
userOpenCardLog:'identity/userOpenCardLog'
|
|
}
|
|
|
|
// 会员信息
|
|
export const info = (param) => {
|
|
return request.post(api.info, param)
|
|
}
|
|
// 分销会员信息
|
|
export const dealerPriceList = (param) => {
|
|
return request.post(api.dealerPriceList, param)
|
|
}
|
|
// 会员信息
|
|
export const submit = (param) => {
|
|
return request.post(api.submit, param)
|
|
}
|
|
|
|
//
|
|
export const userOpenCardLog = (param) => {
|
|
return request.post(api.userOpenCardLog, param)
|
|
} |