12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- <!--登录页面-->
- <template>
- <view id="ssoLogin">
- <web-view @message="handleMessage"
- src="http://192.168.1.10:80/#/miniProgramAuthentication?token=41cd8b02-f612-4dd5-abbd-efb5c45d69ad">
- <!-- src="https://labcontrol.nwafu.edu.cn/stream/#/miniProgramAuthentication"> -->
- </web-view>
- </view>
- </template>
- <script>
- export default {
- name: "ssoLogin",
- data() {
- return {
-
- }
- },
- onLoad(option) {
-
- },
- mounted() {
- },
- methods: {
- handleMessage(e) {
- // console.log('e>>>>>', e);
- const receivedData = e.detail.data; // 接收到的数据
- // console.log('收到H5消息:', receivedData);
- // 处理数据逻辑...
- }
- },
- }
- </script>
- <style lang="stylus" scoped>
- #ssoLogin {
- width:100%;
- height:100%;
- overflow:scroll;
- }
- </style>
|