shop.vue 400 B

123456789101112131415161718192021222324
  1. <template>
  2. <view>
  3. <web-view v-if="webviewUrl" :src="webviewUrl"></web-view>
  4. </view>
  5. </template>
  6. <script>
  7. import config from '@/config';
  8. export default {
  9. data() {
  10. return {
  11. webviewUrl: ''
  12. }
  13. },
  14. onLoad(body) {
  15. this.webviewUrl = config.webviewUrl + '/index?token=' + uni.getStorageSync('shopMobileToken');
  16. },
  17. methods: {}
  18. }
  19. </script>
  20. <style>
  21. </style>