123456789101112131415161718192021222324252627282930313233343536373839404142 |
- <!--扫描二维码页面-->
- <template>
- <view id="demo-view-page">
- <web-view @message="handleMessage"
- :src="'http://192.168.1.10/#/miniProgramAuthentication?token='+'11112222'">
- </web-view>
- </view>
- </template>
- <script>
- export default {
- name: "demo",
- 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>
- #demo-view-page {
- width:100%;
- height:100%;
- overflow:scroll;
- }
- </style>
|