You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
177 lines
5.1 KiB
177 lines
5.1 KiB
<template>
|
|
<view class="min-height bg-main-light">
|
|
<HeaderItem title="AI咨询"/>
|
|
<view style="line-height: 35rpx"
|
|
class="flex flex-col justify-start items-start text-25 p-30">
|
|
<view v-for="(item, index) in list" :key="index" class="mb-25 w-100p">
|
|
<view v-if="!item.isMine" class="flex justify-start items-start">
|
|
<u-icon name="/static/robot.png" size="60rpx"/>
|
|
<view class="shadow bg-white ml-15" style="border-radius: 0 15rpx 15rpx 15rpx; max-width: 80%">
|
|
<view v-if="item.loading" class="p-15">
|
|
<u-loading-icon mode="semicircle" :color="MAIN()"></u-loading-icon>
|
|
</view>
|
|
<template v-else>
|
|
<zero-markdown-view :markdown="item.content"></zero-markdown-view>
|
|
</template>
|
|
</view>
|
|
</view>
|
|
<view v-else class="flex justify-end items-start w-100p">
|
|
<view class="shadow p-15 text-white"
|
|
style="border-radius: 15rpx 0 15rpx 15rpx; max-width: 80%; background-color: #006DFF">{{
|
|
item.content
|
|
}}
|
|
</view>
|
|
</view>
|
|
<!-- <view v-if="index === 0" class="mt-25">-->
|
|
<!-- <view class="font-bold text-28 mb-25 text-center">猜你想问</view>-->
|
|
<!-- <view class="font-bold text-28 mb-25 text-center" @click="send(quest.dictDataCode)"-->
|
|
<!-- style="color: #006DFF"-->
|
|
<!-- v-for="(quest, questIndex) in questionList" :key="questIndex">-->
|
|
<!-- {{ quest.dictDataCode }}-->
|
|
<!-- </view>-->
|
|
<!-- </view>-->
|
|
</view>
|
|
<u-gap height="140rpx"></u-gap>
|
|
</view>
|
|
<view class="stop" v-if="answering" @click="stopAI">
|
|
<u-icon name="/static/stop.png" width="80rpx" height="80rpx"/>
|
|
</view>
|
|
<view class="footer">
|
|
<view class="p-20 bg-white shadow-top flex justify-center items-center">
|
|
<view class="flex-1 mr-15">
|
|
<u-textarea maxlength="-1" auto-height v-model="content" border="none" placeholder="点此开始提问"/>
|
|
</view>
|
|
<view class="mr-25">
|
|
<u-icon name="/static/send.png" size="60rpx" @click="send()"/>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
import HeaderItem from "@/components/HeaderItem.vue";
|
|
import {WS_API} from "@/config";
|
|
import {sendChatReq, stopChatReq} from "@/api/lawOrg";
|
|
import {getUserInfo} from "@/util/user";
|
|
import {MAIN} from "@/config/color";
|
|
import {dictDataReq} from "@/api/common";
|
|
|
|
export default {
|
|
name: "index",
|
|
components: {HeaderItem},
|
|
data() {
|
|
return {
|
|
list: [],
|
|
questionList: [],
|
|
content: '',
|
|
taskId: null,
|
|
answering: false
|
|
}
|
|
},
|
|
methods: {
|
|
MAIN() {
|
|
return MAIN
|
|
},
|
|
async getQuestionsList() {
|
|
const {data} = await dictDataReq({dictId: '165'})
|
|
this.questionList = data
|
|
},
|
|
async send(content = null) {
|
|
const contentItem = content || this.content
|
|
console.log(contentItem, this.content)
|
|
if (!contentItem.trim()) return this.$toast('请输入提问内容')
|
|
if (!this.list[this.list.length - 1].done) return this.$toast('请等待AI回答完毕再继续提问')
|
|
this.list.push({
|
|
content: contentItem,
|
|
isMine: true,
|
|
loading: false,
|
|
done: true,
|
|
})
|
|
this.scrollToBottom()
|
|
this.answering = true
|
|
this.list.push({
|
|
content: '',
|
|
isMine: false,
|
|
loading: true,
|
|
done: false,
|
|
})
|
|
this.taskId = null
|
|
sendChatReq({
|
|
query: contentItem,
|
|
user: getUserInfo().uid
|
|
}).then(() => {
|
|
this.list[this.list.length - 1].done = true
|
|
this.answering = false
|
|
})
|
|
this.content = ''
|
|
},
|
|
scrollToBottom() {
|
|
setTimeout(() => {
|
|
this.$nextTick(() => {
|
|
uni.pageScrollTo({
|
|
scrollTop: 99999,
|
|
duration: 0
|
|
})
|
|
})
|
|
}, 100)
|
|
},
|
|
async stopAI() {
|
|
await stopChatReq({
|
|
taskId: this.taskId
|
|
})
|
|
this.answering = false
|
|
uni.closeSocket()
|
|
}
|
|
},
|
|
onLoad() {
|
|
this.list.push({
|
|
content: '您好!我是AI机器人,请问您想咨询什么问题呢?',
|
|
isMine: false,
|
|
loading: false,
|
|
done: true,
|
|
})
|
|
uni.connectSocket({
|
|
url: `${WS_API}/aiUser`
|
|
})
|
|
uni.onSocketMessage(res => {
|
|
if (res.data === '连接成功') return
|
|
const aiData = JSON.parse(res.data)
|
|
this.list[this.list.length - 1].loading = false
|
|
if (aiData.answer !== '__END__') this.list[this.list.length - 1].content += aiData.answer
|
|
this.taskId = aiData.taskId
|
|
this.scrollToBottom()
|
|
})
|
|
this.getQuestionsList()
|
|
},
|
|
onUnload() {
|
|
this.stopAI()
|
|
},
|
|
onHide() {
|
|
this.stopAI()
|
|
},
|
|
}
|
|
</script>
|
|
<style scoped>
|
|
page {
|
|
background-color: #E0F2FE;
|
|
}
|
|
|
|
.bg {
|
|
background: url("https://sifa-api.wsdns.cn/api/file/20250420/bg.jpg") no-repeat 100% 100%;
|
|
}
|
|
|
|
.stop {
|
|
position: fixed;
|
|
right: 10rpx;
|
|
bottom: 160rpx;
|
|
width: 100rpx;
|
|
height: 100rpx;
|
|
border-radius: 100rpx;
|
|
background: rgba(255, 255, 255, 0.4);
|
|
box-shadow: 1px 1px 5px #3c9cff;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
</style>
|