1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- <template>
- <div class="chatArea">
- <bar :backPage="1" :tit="'物体的运动课程'"/>
- <iframe ref="iframeRef" class="ca_iframe" allow="camera *; microphone *;display-capture;midi;encrypted-media;" :src="src"></iframe>
- </div>
- </template>
- <script>
- import bar from './component/bar.vue';
- export default {
- components:{
- bar
- },
- data() {
- return {
- userId: this.$store.state.user.userinfo.userid,
- org: this.$store.state.user.userinfo.org,
- oid: this.$store.state.user.userinfo.organizeid,
- src:"https://beta.cloud.cocorobo.cn/aigpt/#/js?active_role=3"
- };
- },
- methods: {
- },
- mounted() {
-
- }
- };
- </script>
- <style scoped>
- .chatArea{
- width: 100vw;
- height: 100vh;
- box-sizing: border-box;
- padding-top: 40px;
- overflow: hidden;
- }
- .ca_iframe{
- width: 100%;
- height: 100%;
- }
- </style>
|