| 1234567891011121314151617181920212223242526272829 |
- <template>
- <view>
- <web-view :src="url"></web-view>
- </view>
- </template>
- <script>
- var app;
- export default {
- data() {
- return {
- url:""
- }
- },
- onLoad({type}) {
- app = this;
- var url = "https://tran.jsshuita.cn/index/protocol?name="+type;
- console.log('url',url)
- app.url = url;
- },
- methods: {
- }
- }
- </script>
- <style>
- </style>
|