| 12345678910111213141516171819202122232425262728293031323334353637 |
- <template>
- <view>
-
- <web-view :fullscreen="true" webview-styles="true" :src="webUrl"></web-view>
- </view>
- </template>
- <script>
- const app = getApp();
- const req = require("../../utils/request.js");
- export default {
- components: {},
- props: {},
- data() {
- return {
- webUrl:'http://192.168.110.16:8080/pages/tabBar/index'
- }
- },
- onLoad(options) {
- },
- onShow() {
-
- },
- onShareAppMessage() {
-
- },
- methods: {
-
- },
- }
- </script>
- <style>
- @import "./webView.css";
- </style>
|