This commit is contained in:
liuye
2024-07-24 13:59:29 +08:00
parent 4006f2db54
commit 6fce1a6e34
3 changed files with 14 additions and 2 deletions

View File

@@ -315,6 +315,7 @@ export default {
confirmType(val) {
this.aiConfigId = val[0].value
this.aiConfigName = val[0].label
this.messageList = []
},
getAiTypeList() {
this.$http.post(`/app/appaiconfiginfo/list?status=1`).then(res => {
@@ -326,7 +327,7 @@ export default {
this.typeList = res.data.records
this.aiConfigId = this.typeList[0].dictValue
this.aiConfigName = this.typeList[0].dictName
this.getHistoryList()
// this.getHistoryList()
}
})
}