猫妈狗爸伴宠师小程序前端代码
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.
 
 
 
 

42 lines
895 B

// 小程序-配置信息
import request from '@/utils/request'
// 小程序-配置信息列表数据查询
export function getConfigList() {
return request({
'url': '/applet/config/configList',
'method': 'get'
}).then(res => {
return res.data
})
}
// 小程序-增值服务列表数据查询
export function increaseServiceList() {
return request({
'url': '/applet/config/increaseServiceList',
'method': 'get'
}).then(res => {
return res.data
})
}
// 小程序-平台&服务介绍列表数据查询
export function serviceList() {
return request({
'url': '/applet/config/serviceList',
'method': 'get'
}).then(res => {
return res.data
})
}
// 小程序-服务培训列表数据查询
export function trainList() {
return request({
'url': '/applet/config/trainList',
'method': 'get'
}).then(res => {
return res.data
})
}