1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142
| <script>
import Loading from "@/views/Loading.vue";
export default { props: { show: { type: Boolean, default: false }, title: { type: String, default: '智能助手' }, }, data() { return { x: 0, y: 0, node: null, isCanMove: false, isButtonDisabled: false, typingSpeed: 100, list: [ { id: 1, name: '111', content: '你好', }, { id: 2, name: '222', content: '你好👋,我是你的智能小助手', } ], wordone: '', wordtow: '', } }, components: { Loading, }, mounted() { this.node = document.querySelector('.model-container') }, methods: { sendmsg() { var $this = this; if(this.isButtonDisabled == false){ this.list.push({ id: 1, name: 'sigtuna', content: this.wordone }); this.getBotContent($this); }else{ return; } this.isButtonDisabled = true; console.log(this.wordone); this.wordone = ''; var div = this.$refs.box; setTimeout(() => { div.scrollTop = div.scrollHeight; }, 0) }, getChatContent(text) { let i = 0; this.timer = setInterval(() => { if (i < text.length) { this.list[this.list.length - 1].content += text.charAt(i); i++; var div = this.$refs.box; setTimeout(() => { div.scrollTop = div.scrollHeight; }, 0) } else { clearInterval(this.timer); this.isButtonDisabled = false; } }, this.typingSpeed);
}, getBotContent() { this.bus.$emit("loading", true); this.list.push( { id: 2, name: 'kanade', content: '思考中...' } ); this.$http({ url:"/AiController/query?content="+this.wordone, method:"post" }) .then(res => { console.log(res); if(res.data.code == 200){ var data = res.data.msg; console.log(data); this.list[this.list.length-1].content = ''; this.getChatContent(data); var div = this.$refs.box; setTimeout(() => { div.scrollTop = div.scrollHeight; }, 0)
} this.bus.$emit("loading", false);
}).catch(err => { this.loading = false; this.isButtonDisabled = false; this.$message.error(err.message); }); },
cancel() { this.$emit('cancel') },
submit() { this.$emit('submit') },
setStartingPoint(e) { this.x = e.clientX - this.node.offsetLeft this.y = e.clientY - this.node.offsetTop this.isCanMove = true },
modelMove(e) { if (this.isCanMove) { this.node.style.left = e.clientX - this.x + 'px' this.node.style.top = e.clientY - this.y + 'px' } },
cancelMove() { this.isCanMove = false },
} } </script>
|