1234567891011121314151617181920212223242526272829303132333435 |
- <template>
- <web-view :src="url" class="map"></web-view>
- <!-- <web-view v-if="flag" :src="url"></web-view> -->
- <!-- <iframe v-else :src="url" width="340" height="360" allowfullscreen allow="autoplay; fullscreen; microphone;"></iframe> -->
- </template>
- <script>
- export default {
- data() {
- return {
- // url:"https://datav.aliyuncs.com/share/235518097ffd673bc1eb05011b9a02b6",
- url: 'http://192.168.1.116:8011',
- flag: true
- }
- },
- onLoad: function(option) {
- if (option.url) {
- this.url = option.url;
- uni.setNavigationBarTitle({
- title: "库点监控"
- })
- this.flag = false
- }
- },
- methods: {}
- }
- </script>
- <style>
- .map {
- /* height: 400px; */
- }
- </style>
|