12345678910111213141516171819202122 |
- <template>
- <view>
- <web-view :src="href"></web-view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- href: "http://zdh.zaoquan.nxmy.com:8011/g/?xmlname="
- };
- },
- onLoad(option) {
- this.href = this.href+option.url
- }
- }
- </script>
- <style lang="scss">
- </style>
|