| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- <template>
- <view class="webview">
- <web-view :src="url" id="webcon" @message="handleMessage">
- </web-view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- url: '',
- device_id: '',
- accessToken: '',
- type:''
- }
- },
- onLoad(options) {
- this.device_id = options.device_id
- this.accessToken = uni.getStorageSync('session_key')
- console.log('监控',typeof this.accessToken)
- this.type = options.type
- // this.url = "http://8.136.98.49/#/recognition"
- this.url = "/static/h52.html?device_id=" + this.device_id + "&accessToken=" + this.accessToken + "&type="+ this.type
- // uni.setStorage({
- // key: 'obj',
- // data: JSON.stringify({
- // device_id: this.device_id,
- // accessToken: this.accessToken
- // })
- // })
- //设置 webview 界面的状态栏的 title
- uni.setNavigationBarTitle({
- title: '监控详情'
- });
- // this.getWebviewPage()
- },
- methods: {
- getWebviewPage(id) {
- this.url = "/static/h5.html?device_id=" + this.device_id + "&accessToken=" + this.accessToken
- // uni.setStorage({
- // key: 'obj',
- // data: JSON.stringify({
- // device_id: this.device_id,
- // accessToken: this.accessToken
- // })
- // })
- //设置 webview 界面的状态栏的 title
- uni.setNavigationBarTitle({
- title: '监控详情'
- });
- },
- handleMessage(evt) {
- console.log('接收到的消息:' + JSON.stringify(evt.detail.data));
- }
- }
- }
- </script>
- <style>
- .webview {
- width: 100vw;
- height: 100vh;
- }
- </style>
|