pocClass.vue 822 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. <template>
  2. <div class="chatArea">
  3. <bar :backPage="1" :tit="'物体的运动课程'"/>
  4. <iframe ref="iframeRef" class="ca_iframe" allow="camera *; microphone *;display-capture;midi;encrypted-media;" :src="src"></iframe>
  5. </div>
  6. </template>
  7. <script>
  8. import bar from './component/bar.vue';
  9. export default {
  10. components:{
  11. bar
  12. },
  13. data() {
  14. return {
  15. userId: this.$store.state.user.userinfo.userid,
  16. org: this.$store.state.user.userinfo.org,
  17. oid: this.$store.state.user.userinfo.organizeid,
  18. src:"https://beta.cloud.cocorobo.cn/aigpt/#/js?active_role=3"
  19. };
  20. },
  21. methods: {
  22. },
  23. mounted() {
  24. }
  25. };
  26. </script>
  27. <style scoped>
  28. .chatArea{
  29. width: 100vw;
  30. height: 100vh;
  31. box-sizing: border-box;
  32. padding-top: 40px;
  33. overflow: hidden;
  34. }
  35. .ca_iframe{
  36. width: 100%;
  37. height: 100%;
  38. }
  39. </style>