12345678910111213141516171819202122232425262728293031 |
- <template>
- <view>
- <web-view :src="paths"></web-view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- paths:''
- }
- },
- onLoad(e) {
- console.log(1111111,e)
-
-
- // uni.setNavigationBarTitle({
- // title:e.name
- // })
- this.paths=e.link;
- },
- methods: {
-
- }
- }
- </script>
- <style>
- </style>
|