Administrator
2021-06-15 df5fd3427870d83085f8bb02c038fdd443b6542f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<template>
    <view class="content">
        <web-view :src="urls"></web-view>
    </view>
</template>
 
<script>
    export default {
        data() {
            return {
                urls: ''
            }
        },
        methods: {},
        mounted() {},
        onLoad: function(options) {
            //long 转换为字符串
            var code = JSON.stringify(this.$store.state.puserID.toString());
            this.urls = "http://s16s652780.51mypc.cn/xcxjingqingmap_clock_sign_in/xcxmap.html?snumber="+code;
        },
    }
</script>
 
<style>
</style>