exhibition.vue 585 B

1234567891011121314151617181920212223242526272829303132333435
  1. <template>
  2. <view class="">
  3. <web-view :src="url" :progress="true" :webview-styles="webviewStyles"></web-view>
  4. </view>
  5. </template>
  6. <script>
  7. export default {
  8. data() {
  9. return {
  10. //url: 'http://mshow.lksby.com/',
  11. url: 'http://tour.quanjingke.com/xiangmu/quanqiunengyuan_vtour_v7/index.html',
  12. title: '',
  13. background: {
  14. backgroundImage: 'linear-gradient(270deg, #4BC0E2 0%, #538BE7 100%)',
  15. },
  16. backStyle: {
  17. color: '#fff'
  18. },
  19. }
  20. },
  21. methods: {
  22. i18n(data) {
  23. return this.$t('common.' + data);
  24. },
  25. }
  26. }
  27. </script>
  28. <style>
  29. </style>