1234567891011121314151617181920212223242526272829303132333435 |
- <template>
- <view class="">
- <web-view :src="url" :progress="true" :webview-styles="webviewStyles"></web-view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- //url: 'http://mshow.lksby.com/',
- url: 'http://tour.quanjingke.com/xiangmu/quanqiunengyuan_vtour_v7/index.html',
- title: '',
- background: {
- backgroundImage: 'linear-gradient(270deg, #4BC0E2 0%, #538BE7 100%)',
- },
- backStyle: {
- color: '#fff'
- },
- }
- },
- methods: {
- i18n(data) {
- return this.$t('common.' + data);
- },
- }
- }
- </script>
- <style>
- </style>
|