index.vue 691 B

1234567891011121314151617181920212223242526272829303132
  1. <template>
  2. <view class="container">
  3. <web-view :src="externalUrl"></web-view>
  4. </view>
  5. </template>
  6. <script>
  7. export default {
  8. onLoad(option){
  9. if(option.type == 1){
  10. this.externalUrl = 'https://nsh51.tuanfengkeji.cn/#/'
  11. }else if(option.type == 2){
  12. this.externalUrl = 'https://www.tuanfengkeji.cn/TFShop_Uni_H5/#/another-tf/another-user/chat/chat-detail?chat=serviceAssistant'
  13. }
  14. },
  15. data() {
  16. return {
  17. externalUrl: ''
  18. };
  19. },
  20. // onLoad() {
  21. // this.externalUrl = this.$route.query.url;
  22. // }
  23. };
  24. </script>
  25. <style scoped>
  26. .container {
  27. width: 100%;
  28. height: 100vh;
  29. }
  30. </style>