|
@@ -29,6 +29,7 @@ const getClassroomDefaultInfo = async () => {
|
|
|
// state.orchestraInfo.avatar = content.avatar
|
|
|
// state.orchestraInfo.unionId = content.unionId || 0
|
|
|
console.log(content, 'orchestra')
|
|
|
+
|
|
|
const { data } = await request.post('/api-auth/smsLogin', {
|
|
|
requestType: 'form',
|
|
|
data: {
|
|
@@ -91,9 +92,15 @@ const initProject = async () => {
|
|
|
const parseSearch: any = qs.parse(location.search)
|
|
|
const hashSearch = qs.parse(location.hash.split('?')[1])
|
|
|
const source: string = parseSearch.source || hashSearch.source || ''
|
|
|
+ const Authorization: string =
|
|
|
+ parseSearch.Authorization || hashSearch.Authorization || ''
|
|
|
if (source === 'kt') {
|
|
|
// 获取课堂乐器token
|
|
|
- await getClassroomDefaultInfo()
|
|
|
+ if (Authorization) {
|
|
|
+ state.sourcType = 'kt'
|
|
|
+ } else {
|
|
|
+ await getClassroomDefaultInfo()
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
if (browser().isTeacher) {
|