1234567891011121314151617181920212223242526272829303132 |
- /**
- * Created by xw on 2024/07/23.
- */
- const cmChats = new Vue({
- el:"#caimei-chat-content",
- mixins: [cmAiMixins],
- data() {
- },
- computed: {
- },
- methods: {
- handleClickIndex(){// 跳转首页
- window.open('/index.html')
- }
- },
- created () {
- },
- mounted () {
- if(globalUserData){
- this.clubName = globalUserData.name
- this.chatParams.userId = this.chatHistoryParams.userId = globalUserData.userId;
- this.chatParams.question = ''
- this.getChatHistory()
- }else{
- window.location.href = '/login.html'
- }
- }
- });
|