expert.vue 431 B

123456789101112131415161718192021222324252627
  1. <template>
  2. <view style="width: 100%;height: 100vh;">
  3. <iframe :src="url" width="100%" height="100%" frameborder="0"></iframe>
  4. </view>
  5. </template>
  6. <script>
  7. export default {
  8. data() {
  9. return {
  10. baseUrl:'http://103.89.185.161:3010/',
  11. url:''
  12. }
  13. },
  14. onLoad(options) {
  15. let token=options.token;
  16. this.url= `${this.baseUrl}#/start?token=${token}&code=zhwd`;
  17. },
  18. methods: {
  19. }
  20. }
  21. </script>
  22. <style>
  23. </style>