expert.vue 649 B

123456789101112131415161718192021222324252627282930
  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:'https://qaoss.szxcdn.com/dist_zhqah5/',
  11. // baseUrl:'https://qaoss.qadsjzx.com/dist_zhqah5/',
  12. baseUrl:'https://qanzds.qadsjzx.com/dist_zhqah5/',
  13. url:''
  14. }
  15. },
  16. onLoad(options) {
  17. let token=options.token;
  18. // this.url= `${this.baseUrl}#/start?token=${token}&code=zhwd`;
  19. this.url= `${this.baseUrl}#/pages/index?code=expert&clientId=customer&token=${token}`;
  20. },
  21. methods: {
  22. }
  23. }
  24. </script>
  25. <style>
  26. </style>