|
@@ -31,7 +31,7 @@
|
|
|
<span>{{activeWindowId<=0?'弘则AI助手使用说明':`${historyList.length||0} messages`}}</span>
|
|
|
</div>
|
|
|
<div class="select-box">
|
|
|
- <el-select v-model="model" :class="{'hint':showHint}" :disabled="isTyping||(windowContentLoading&&windowContentLoading.visible)" ref="modelSelect"
|
|
|
+ <!-- <el-select v-model="model" :class="{'hint':showHint}" :disabled="isTyping||(windowContentLoading&&windowContentLoading.visible)" ref="modelSelect"
|
|
|
@click.native="selectClick"
|
|
|
@change="changeModel">
|
|
|
<el-option v-for="item in modelList" :key="item.label"
|
|
@@ -40,7 +40,7 @@
|
|
|
<span style="float:left">{{item.label}}</span>
|
|
|
<span style="float:right"><img :src="item.icon" style="margin-top:5px;width:24px;height:24px;"/></span>
|
|
|
</el-option>
|
|
|
- </el-select>
|
|
|
+ </el-select> -->
|
|
|
</div>
|
|
|
</div>
|
|
|
<!-- 仅这一部分滚动 -->
|
|
@@ -86,7 +86,7 @@ export default {
|
|
|
/* window-content*/
|
|
|
historyList:[],//当前窗口历史记录
|
|
|
inputText:'',
|
|
|
- model:'',//当前选择的模型
|
|
|
+ model:'GPT-4 Turbo',//当前选择的模型
|
|
|
modelOldValue:'',
|
|
|
modelList:[
|
|
|
{
|
|
@@ -113,6 +113,7 @@ export default {
|
|
|
showHint:false,//选择模型提示
|
|
|
isTyping:false,//是否处于打字动画中
|
|
|
windowContentLoading:null,
|
|
|
+ answerLoading:false,//回答中
|
|
|
};
|
|
|
},
|
|
|
watch:{
|
|
@@ -161,7 +162,7 @@ export default {
|
|
|
this.historyList = List||[]
|
|
|
this.windowContentLoading&&this.windowContentLoading.close()
|
|
|
//使用模型
|
|
|
- this.model = this.historyList.length?this.historyList[this.historyList.length-1].Model:''
|
|
|
+ this.model = this.historyList.length?this.historyList[this.historyList.length-1].Model:'GPT-4 Turbo'
|
|
|
//如果有历史记录,则滚动到底部
|
|
|
this.$nextTick(()=>{
|
|
|
const windowContentWrap = document.querySelector('.window-content-wrap')
|
|
@@ -207,7 +208,7 @@ export default {
|
|
|
this.activeWindowId=0
|
|
|
this.activeWindow=null
|
|
|
this.historyList=[]
|
|
|
- this.model=''
|
|
|
+ this.model='GPT-4 Turbo'
|
|
|
//this.inputText=''
|
|
|
this.isTyping = false
|
|
|
},
|
|
@@ -293,7 +294,7 @@ export default {
|
|
|
this.inputText+='\n'
|
|
|
return
|
|
|
}
|
|
|
- if(this.isTyping){
|
|
|
+ if(this.isTyping||this.answerLoading){
|
|
|
this.$message.warning('请等待回答完成')
|
|
|
return
|
|
|
}
|
|
@@ -310,6 +311,7 @@ export default {
|
|
|
this.$message.warning('请输入提问')
|
|
|
return
|
|
|
}
|
|
|
+ this.answerLoading=true
|
|
|
this.activeWindowId===0&&(this.activeWindowId = -1)
|
|
|
//this.activeWindowId!==0&&this.getWindowDetail()
|
|
|
//mock 加入到historyList中
|
|
@@ -339,6 +341,7 @@ export default {
|
|
|
Ask:inputText,
|
|
|
Model:this.model
|
|
|
}).then(res=>{
|
|
|
+ this.answerLoading=false
|
|
|
//在回答未获取前切换了新窗口
|
|
|
if(this.historyList.length===0){
|
|
|
this.getWindowList()
|
|
@@ -373,6 +376,8 @@ export default {
|
|
|
msg.Model = Model
|
|
|
msg.isPlay = true
|
|
|
this.historyList.splice(this.historyList.length-1,1,msg)
|
|
|
+ }).catch(()=>{
|
|
|
+ this.answerLoading=false
|
|
|
})
|
|
|
},
|
|
|
//获取窗口列表
|