12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- <!--登录页面-->
- <template>
- <view id="ssoLogin">
- <web-view @message="handleMessage"
- src="https://labcontrol.nwafu.edu.cn/stream/#/miniProgramAuthentication">
- <!-- src="http://192.168.1.10:80/#/miniProgramAuthentication?token=41cd8b02-f612-4dd5-abbd-efb5c45d69ad"> -->
- </web-view>
- </view>
- </template>
- <script>
- export default {
- name: "ssoLogin",
- data() {
- return {
-
- }
- },
- onLoad(option) {
-
- },
- mounted() {
- const pages = getCurrentPages();
- const currentPage = pages[pages.length - 1];
- const prevPage = pages[pages.length - 2];
- if (prevPage && prevPage.route === 'pages/views/login/ssoCertification') {
- uni.redirectTo({
- url: '/pages/views/login/login',
- });
- }
- },
- methods: {
- handleMessage(e) {
- const receivedData = e.detail.data; // 接收到的数据
- }
- },
- }
- </script>
- <style lang="stylus" scoped>
- #ssoLogin {
- width:100%;
- height:100%;
- overflow:scroll;
- }
- </style>
|