Commit 9a60819e authored by liubinyu's avatar liubinyu

bug

parent 5dd20986
......@@ -2,32 +2,17 @@ import http from './interceptor.js'
// 游客选择星座字体查看今日所属星座运势
export function findConstellation(data) {
return http.request({
url: '/system/chatCompletionsExample/findConstellation',
method: 'GET',
data,
loadingText: '转动星盘中...'
})
return http.request({ url: '/system/chatCompletionsExample/findConstellation', method: 'GET', data })
}
// 专属运程(免费)
export function exclusiveItineraryFree(data) {
return http.request({
url: '/system/chatCompletionsExample/exclusiveItineraryFree',
method: 'GET',
data,
loadingText: '转动星盘中...'
})
return http.request({ url: '/system/chatCompletionsExample/exclusiveItineraryFree', method: 'GET', data })
}
// 解析用户输入的生日返回根据生日的星座信息(更详细)
export function analyzingBirthdays(data) {
return http.request({
url: '/system/chatCompletionsExample/analyzingBirthdays',
method: 'GET',
data,
loadingText: '转动星盘中...'
})
return http.request({ url: '/system/chatCompletionsExample/analyzingBirthdays', method: 'GET', data })
}
// 获取用户信息
......
......@@ -68,7 +68,7 @@ class Request {
dataType: 'json',
responseType: 'text',
showLoading: true,
loadingText: '请求中...',
loadingText: '转动星盘中...',
loadingTime: 100,
timer: null,
originalData: false,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment