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.
104 lines
2.1 KiB
104 lines
2.1 KiB
1 year ago
|
import request from '@/utils/request'
|
||
|
|
||
|
// api地址
|
||
|
const apiUri = {
|
||
|
chengures: 'weightHones',
|
||
|
phoneres: 'phone',
|
||
|
minganres: 'darkZodiac',
|
||
|
taohuares: 'peachBlossom',
|
||
|
yishires: 'foodClothing',
|
||
|
zerires: 'chooseDay',
|
||
|
xingmingres:'nameTest',
|
||
|
youshibazres:'advantageousPosition',
|
||
|
youshiXuankres:'xuanKong',
|
||
|
youshiLiunres:'liuYearFeiXing',
|
||
|
wenchangLiunres:'wenChang',
|
||
|
wenchangLocationres:'eightWenChangList',
|
||
|
wenchangBazires:'eightWenChang',
|
||
|
jiyinres:'geneMap',
|
||
|
mingjures:'fateInfo',
|
||
|
shengmingres:'lifeCode',
|
||
|
batchphone:'mobileBatch'
|
||
|
}
|
||
|
|
||
|
// 页面数据
|
||
|
// 商品列表
|
||
|
export const chengures = param => {
|
||
|
return request.post(apiUri.chengures, param)
|
||
|
}
|
||
|
|
||
|
// 页面数据
|
||
|
// 商品列表
|
||
|
export const phoneres = param => {
|
||
|
return request.post(apiUri.phoneres, param)
|
||
|
}
|
||
|
|
||
|
|
||
|
export const minganres = param => {
|
||
|
return request.post(apiUri.minganres, param)
|
||
|
}
|
||
|
|
||
|
export const taohuares = param => {
|
||
|
return request.post(apiUri.taohuares, param)
|
||
|
}
|
||
|
|
||
|
export const yishires = param => {
|
||
|
return request.post(apiUri.yishires, param)
|
||
|
}
|
||
|
|
||
|
export const zerires = param => {
|
||
|
return request.post(apiUri.zerires, param)
|
||
|
}
|
||
|
|
||
|
export const xingmingres = param => {
|
||
|
return request.post(apiUri.xingmingres, param)
|
||
|
}
|
||
|
|
||
|
|
||
|
export const youshibazres = param => {
|
||
|
return request.post(apiUri.youshibazres, param)
|
||
|
}
|
||
|
|
||
|
|
||
|
export const youshiXuankres = param => {
|
||
|
return request.post(apiUri.youshiXuankres, param)
|
||
|
}
|
||
|
|
||
|
export const youshiLiunres = param => {
|
||
|
return request.post(apiUri.youshiLiunres, param)
|
||
|
}
|
||
|
|
||
|
export const wenchangLiunres = param => {
|
||
|
return request.post(apiUri.wenchangLiunres, param)
|
||
|
}
|
||
|
|
||
|
|
||
|
|
||
|
export const wenchangLocationres = (param) => {
|
||
|
return request.post(apiUri.wenchangLocationres, param)
|
||
|
}
|
||
|
|
||
|
|
||
|
export const wenchangBazires = (param) => {
|
||
|
return request.post(apiUri.wenchangBazires, param)
|
||
|
}
|
||
|
|
||
|
|
||
|
export const jiyinres = (param) => {
|
||
|
return request.post(apiUri.jiyinres, param)
|
||
|
}
|
||
|
|
||
|
export const mingjures = (param) => {
|
||
|
return request.post(apiUri.mingjures, param)
|
||
|
}
|
||
|
|
||
|
|
||
|
export const shengmingres = (param) => {
|
||
|
return request.post(apiUri.shengmingres, param)
|
||
|
}
|
||
|
|
||
|
|
||
|
export const batchphone = (param) => {
|
||
|
return request.post(apiUri.batchphone, param)
|
||
|
}
|