Commit 9a60819e authored by liubinyu's avatar liubinyu

bug

parent 5dd20986
...@@ -2,32 +2,17 @@ import http from './interceptor.js' ...@@ -2,32 +2,17 @@ import http from './interceptor.js'
// 游客选择星座字体查看今日所属星座运势 // 游客选择星座字体查看今日所属星座运势
export function findConstellation(data) { export function findConstellation(data) {
return http.request({ return http.request({ url: '/system/chatCompletionsExample/findConstellation', method: 'GET', data })
url: '/system/chatCompletionsExample/findConstellation',
method: 'GET',
data,
loadingText: '转动星盘中...'
})
} }
// 专属运程(免费) // 专属运程(免费)
export function exclusiveItineraryFree(data) { export function exclusiveItineraryFree(data) {
return http.request({ return http.request({ url: '/system/chatCompletionsExample/exclusiveItineraryFree', method: 'GET', data })
url: '/system/chatCompletionsExample/exclusiveItineraryFree',
method: 'GET',
data,
loadingText: '转动星盘中...'
})
} }
// 解析用户输入的生日返回根据生日的星座信息(更详细) // 解析用户输入的生日返回根据生日的星座信息(更详细)
export function analyzingBirthdays(data) { export function analyzingBirthdays(data) {
return http.request({ return http.request({ url: '/system/chatCompletionsExample/analyzingBirthdays', method: 'GET', data })
url: '/system/chatCompletionsExample/analyzingBirthdays',
method: 'GET',
data,
loadingText: '转动星盘中...'
})
} }
// 获取用户信息 // 获取用户信息
......
...@@ -68,7 +68,7 @@ class Request { ...@@ -68,7 +68,7 @@ class Request {
dataType: 'json', dataType: 'json',
responseType: 'text', responseType: 'text',
showLoading: true, showLoading: true,
loadingText: '请求中...', loadingText: '转动星盘中...',
loadingTime: 100, loadingTime: 100,
timer: null, timer: null,
originalData: false, 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