소스 검색

优化

和田中职
suyanyan 1 주 전
부모
커밋
10b039bfa1
4개의 변경된 파일10개의 추가작업 그리고 11개의 파일을 삭제
  1. +1
    -1
      Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/InternshipResults/list.vue
  2. +1
    -1
      Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/clockIn/list.vue
  3. +1
    -1
      Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/home.vue
  4. +7
    -8
      Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/login.vue

+ 1
- 1
Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/InternshipResults/list.vue 파일 보기

@@ -9,7 +9,7 @@
</view>
</view>
<view class="footer">
<!-- <img src="../../static/image/bg3.png" alt="" /> -->
<img src="../../static/image/bg3.png" alt="" />
</view>
</view>
</template>


+ 1
- 1
Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/clockIn/list.vue 파일 보기

@@ -154,7 +154,7 @@
}
});
} else {
alert('failed' + this.getStatus());
// alert('failed' + this.getStatus());
}
});
},


+ 1
- 1
Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/home.vue 파일 보기

@@ -96,7 +96,7 @@
<!--#endif -->
</view>
</view>
<tabBar selectedIndex='/pages/home'></tabBar>
<!-- <tabBar selectedIndex='/pages/home'></tabBar> -->
</view>
</template>



+ 7
- 8
Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/login.vue 파일 보기

@@ -113,21 +113,20 @@
},
methods: {
async getCasLoginInfo() {
let loginResult=null;
let loginResult = null;
const url = new URL(window.location.href);
const params = new URLSearchParams(url.search);
const ticket = params.get('ticket');
// const ticket = "1"
if (ticket) {
console.log("1:",ticket);
let postResult = await this.POST('/api/ht/ticket', {
ticket,
})
console.log(postResult);
if (postResult[1].data.code == '200') {
loginResult = postResult[1].data.data;
} else {
this.TOAST(postResult[1].data.info);
}
const {
baseinfo,
@@ -141,13 +140,13 @@
role
}
const token = baseinfo.token
this.SET_GLOBAL('token', token)
this.SET_GLOBAL('loginUser', user)
this.SET_STORAGE('token', token)
this.HIDE_LOADING()
this.TAB_TO('/pages/home')



불러오는 중...
취소
저장