12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- <template>
- <view>
- <web-view :src="url"></web-view>
- </view>
- </template>
- <script>
- var config = require('../../common/config.js');
- var storage = require('../../common/storage.js');
- export default {
- data() {
- return {
- url: ''
- };
- }
-
- ,
- onLoad: function (options) {
- this.setData({
- url: options.url
- });
- },
-
- onReady: function () {},
-
- onShow: function () {},
-
- onHide: function () {},
-
- onUnload: function () {},
-
- onPullDownRefresh: function () {},
-
- onReachBottom: function () {},
-
- onShareAppMessage: function () {},
- methods: {}
- };
- </script>
- <style>
- @import './webview.css';
- </style>
|