Copilot小助理
This commit is contained in:
@@ -2,7 +2,7 @@
|
|||||||
<div class="AppDialogue">
|
<div class="AppDialogue">
|
||||||
<u-navbar title="Copilot小助理" title-color="#000" title-width="300" title-size="32" :title-bold="true" :background="backgroundNavbar" :is-back="false"></u-navbar>
|
<u-navbar title="Copilot小助理" title-color="#000" title-width="300" title-size="32" :title-bold="true" :background="backgroundNavbar" :is-back="false"></u-navbar>
|
||||||
<!-- <scroll-view scroll-y="true" class="scroll-Y" @scroll="scroll"> -->
|
<!-- <scroll-view scroll-y="true" class="scroll-Y" @scroll="scroll"> -->
|
||||||
<!-- <div class="service-content">
|
<!-- <div class="service-content" v-if="!messageList.length">
|
||||||
<div class="text-content">
|
<div class="text-content">
|
||||||
<div class="text-left">
|
<div class="text-left">
|
||||||
<div>嘿,你好呀!</div>
|
<div>嘿,你好呀!</div>
|
||||||
@@ -15,7 +15,7 @@
|
|||||||
<div class="list-bg"></div>
|
<div class="list-bg"></div>
|
||||||
<div class="list-content">
|
<div class="list-content">
|
||||||
<div v-for="(item, index) in messageList" :key="index">
|
<div v-for="(item, index) in messageList" :key="index">
|
||||||
<div class="send-time">6-8 10:31</div>
|
<div class="send-time">{{item.createTime.substring(5, 16)}}</div>
|
||||||
<div :class="item.userType == 1 ? 'item-left' : 'item-right'">
|
<div :class="item.userType == 1 ? 'item-left' : 'item-right'">
|
||||||
<img src="./img/user-img.png" alt="" class="user-img" v-if="item.userType == 1">
|
<img src="./img/user-img.png" alt="" class="user-img" v-if="item.userType == 1">
|
||||||
<div class="item" :class="'item'+index">
|
<div class="item" :class="'item'+index">
|
||||||
@@ -103,23 +103,9 @@ export default {
|
|||||||
...mapState(['user', 'token']),
|
...mapState(['user', 'token']),
|
||||||
},
|
},
|
||||||
onLoad() {
|
onLoad() {
|
||||||
this.autoLogin().then(() => {
|
if(this.token) {
|
||||||
this.getHistoryList()
|
this.getHistoryList()
|
||||||
// uni.getLocation({
|
}
|
||||||
// type: 'wgs84', // 返回可以用于uni.openLocation的经纬度,默认为wgs84的gps坐标
|
|
||||||
// success : (res) => {
|
|
||||||
// let location = `${res.latitude}, ${res.longitude}`
|
|
||||||
// this.$instance.post(`/admin/area/reverseGeocoding?location=${location}`).then(res => {
|
|
||||||
// if(res && res.code == 0){
|
|
||||||
// this.areaId = res.data.result.addressComponent.adcode + '000000'
|
|
||||||
// }
|
|
||||||
// })
|
|
||||||
// },
|
|
||||||
// fail: (error) => {
|
|
||||||
// console.log('获取位置失败:', error);
|
|
||||||
// }
|
|
||||||
// });
|
|
||||||
})
|
|
||||||
recorderManager.onStop((res)=> {
|
recorderManager.onStop((res)=> {
|
||||||
this.upLoad(res.tempFilePath)
|
this.upLoad(res.tempFilePath)
|
||||||
});
|
});
|
||||||
@@ -202,7 +188,7 @@ export default {
|
|||||||
},
|
},
|
||||||
sendMsg() {
|
sendMsg() {
|
||||||
this.$loading()
|
this.$loading()
|
||||||
this.$instance.post("/app/appaigccopilotinfo/add", {content: this.content, appType: 0, areaId: this.areaId}).then(res => {
|
this.$instance.post("/app/appaicopilotinfo/add", {content: this.content, appType: 0, areaId: this.areaId}).then(res => {
|
||||||
if(res.code == 0) {
|
if(res.code == 0) {
|
||||||
this.content = ''
|
this.content = ''
|
||||||
this.messageList.push(res.data[0])
|
this.messageList.push(res.data[0])
|
||||||
@@ -219,7 +205,7 @@ export default {
|
|||||||
},
|
},
|
||||||
sendVoice() {
|
sendVoice() {
|
||||||
this.$loading()
|
this.$loading()
|
||||||
this.$instance.post("/app/appaigccopilotinfo/add", {sdkFileUrl: this.voiceUrl, fileId: this.voiceId, appType: 0}).then(res => {
|
this.$instance.post("/app/appaicopilotinfo/add", {sdkFileUrl: this.voiceUrl, fileId: this.voiceId, appType: 0}).then(res => {
|
||||||
if(res.code == 0) {
|
if(res.code == 0) {
|
||||||
this.voiceUrl = ''
|
this.voiceUrl = ''
|
||||||
this.voiceId = ''
|
this.voiceId = ''
|
||||||
@@ -240,7 +226,7 @@ export default {
|
|||||||
},
|
},
|
||||||
getHistoryList() {
|
getHistoryList() {
|
||||||
this.$loading()
|
this.$loading()
|
||||||
this.$instance.post(`/app/appaigccopilotinfo/list?current=${this.current}&size=10`).then(res => {
|
this.$instance.post(`/app/appaicopilotinfo/list?current=${this.current}&size=10`).then(res => {
|
||||||
if(res.code == 0 && res.data.records.length) {
|
if(res.code == 0 && res.data.records.length) {
|
||||||
res.data.records.map((item) => {
|
res.data.records.map((item) => {
|
||||||
if(item.sdkFileUrl) {
|
if(item.sdkFileUrl) {
|
||||||
@@ -292,7 +278,7 @@ export default {
|
|||||||
},
|
},
|
||||||
handleAdminLogin({detail: {code: phoneCode}}) {
|
handleAdminLogin({detail: {code: phoneCode}}) {
|
||||||
if (!this.token) {
|
if (!this.token) {
|
||||||
this.autoLogin({loginWay: 'admin', phoneCode}).then(() => {
|
this.autoLogin({corpId: "ww596787bb70f08288", loginWay: 'admin', phoneCode}).then(() => {
|
||||||
this.getUserInfo()
|
this.getUserInfo()
|
||||||
})
|
})
|
||||||
} else this.$u.toast("已登录,无需重新登录!")
|
} else this.$u.toast("已登录,无需重新登录!")
|
||||||
|
|||||||
@@ -1,131 +1,256 @@
|
|||||||
<template>
|
<template>
|
||||||
<div class="AppRecord">
|
<div class="AppRecord">
|
||||||
<u-navbar title="Copilot小助理" title-color="#000" title-width="300" title-size="32" :title-bold="true" :background="backgroundNavbar" :is-back="false"></u-navbar>
|
<u-navbar title="Copilot小助理" title-color="#000" title-width="300" title-size="32" :title-bold="true" :background="backgroundNavbar" :is-back="false"></u-navbar>
|
||||||
<div class="list-bg"></div>
|
<div class="list-bg">
|
||||||
<div class="list-content">
|
<div class="search-content">
|
||||||
<div class="item">
|
<u-search v-model="searchVal" :clearabled="true" placeholder="请输入搜索关键词…" :show-action="false"
|
||||||
<p class="content">聊天详情聊天详情聊天详情聊天详情,聊天详情聊天详情聊天详情聊天详情,聊天详情聊天详情聊天详情聊天详情,聊天详情聊天详情聊天详情聊天详情</p>
|
bg-color="#fff" search-icon-color="#E2E8F1" color="#666" height="72" @search="getSearchList" @clear="handerClear">
|
||||||
<div class="bottom-flex">
|
</u-search>
|
||||||
<div class="time">2024-06-02 10:21:23</div>
|
</div>
|
||||||
<div class="view">
|
</div>
|
||||||
查看对话
|
<div class="list-content">
|
||||||
<img src="./img/del-icon.png" alt="" class="del-img">
|
<div v-for="(item, index) in messageList" :key="index">
|
||||||
</div>
|
<div class="send-time">{{item.createTime.substring(5, 16)}}</div>
|
||||||
</div>
|
<div :class="item.userType == 1 ? 'item-left' : 'item-right'">
|
||||||
</div>
|
<img src="./img/user-img.png" alt="" class="user-img" v-if="item.userType == 1">
|
||||||
<div class="item">
|
<div class="item" :class="'item'+index">
|
||||||
<p class="content">聊天详情聊天详情聊天详情聊天详情,聊天详情聊天详情聊天详情聊天详情,聊天详情聊天详情聊天详情聊天详情,聊天详情聊天详情聊天详情聊天详情</p>
|
<u-icon name="play-right-fill" color="#CCE2FF" size="20" v-if="item.userType != 1" class="u-icon-right"></u-icon>
|
||||||
<div class="bottom-flex">
|
<u-icon name="play-left-fill" color="#F3F5F7" size="20" v-if="item.userType == 1" class="u-icon-left"></u-icon>
|
||||||
<div class="time">2024-06-02 10:21:23</div>
|
<div class="voice-div" v-if="item.sdkFileUrl" @click="play(item.sdkFileUrl, index)">
|
||||||
<div class="view">
|
<span>8”</span>
|
||||||
查看对话
|
<img src="./img/play-d.gif" alt="" v-if="item.isPlay">
|
||||||
<img src="./img/del-icon.png" alt="" class="del-img">
|
<img src="./img/play-j.png" alt="" v-else>
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<div class="item">
|
|
||||||
<p class="content">聊天详情聊天详情聊天详情聊天详情,聊天详情聊天详情聊天详情聊天详情,聊天详情聊天详情聊天详情聊天详情,聊天详情聊天详情聊天详情聊天详情</p>
|
|
||||||
<div class="bottom-flex">
|
|
||||||
<div class="time">2024-06-02 10:21:23</div>
|
|
||||||
<div class="view">
|
|
||||||
查看对话
|
|
||||||
<img src="./img/del-icon.png" alt="" class="del-img">
|
|
||||||
</div>
|
</div>
|
||||||
|
<p v-if="!item.sdkFileUrl">{{item.content || ''}}</p>
|
||||||
</div>
|
</div>
|
||||||
|
<img src="./img/user-img.png" alt="" class="user-img" v-if="item.userType != 1">
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
<AiEmpty v-if="!messageList.length"/>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import {mapActions, mapState} from 'vuex'
|
|
||||||
|
|
||||||
export default {
|
import {mapActions, mapState} from "vuex";
|
||||||
name: 'AppRecord',
|
export default {
|
||||||
appName: 'Copilot小助理(记录)',
|
customNavigation: true,
|
||||||
customNavigation: true,
|
enablePullDownRefresh: true,
|
||||||
enablePullDownRefresh: true,
|
name: 'AppRecord',
|
||||||
data() {
|
appName: 'Copilot小助理(记录)',
|
||||||
return {
|
data() {
|
||||||
backgroundNavbar: {
|
return {
|
||||||
background: 'url(https://cdn.cunwuyun.cn/wechat/biaopin/residentAssistant/header-bg.jpeg) no-repeat',
|
backgroundNavbar: {
|
||||||
backgroundSize: 'cover',
|
background: 'url(https://cdn.cunwuyun.cn/wechat/biaopin/residentAssistant/header-bg.jpeg) no-repeat',
|
||||||
},
|
backgroundSize: 'cover',
|
||||||
}
|
},
|
||||||
},
|
searchVal: '',
|
||||||
|
messageList: [
|
||||||
computed: {
|
// {
|
||||||
...mapState(['user', 'token']),
|
// userType: 0,
|
||||||
},
|
// sdkFileUrl: 'http://test87ftp.cunwuyun.cn/20240104/output.mp3',
|
||||||
|
// isPlay: false
|
||||||
onLoad() {
|
// }
|
||||||
uni.setNavigationBarTitle({
|
],
|
||||||
title: 'Copilot小助理(记录)'
|
current: 1,
|
||||||
});
|
pages: 2,
|
||||||
|
|
||||||
},
|
|
||||||
|
|
||||||
methods: {
|
|
||||||
...mapActions(['autoLogin']),
|
|
||||||
}
|
}
|
||||||
}
|
},
|
||||||
|
computed: {
|
||||||
|
...mapState(['user', 'token']),
|
||||||
|
},
|
||||||
|
onLoad() {
|
||||||
|
if(this.token) {
|
||||||
|
this.getHistoryList()
|
||||||
|
}else {
|
||||||
|
return this.$u.toast("请在'个人中心'登录")
|
||||||
|
}
|
||||||
|
|
||||||
|
},
|
||||||
|
onPullDownRefresh() {
|
||||||
|
if(this.current > this.pages) {
|
||||||
|
return this.$u.toast('没有更多记录')
|
||||||
|
}
|
||||||
|
this.current = this.current + 1
|
||||||
|
this.getHistoryList()
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
...mapActions(['autoLogin']),
|
||||||
|
getHistoryList() {
|
||||||
|
this.$loading()
|
||||||
|
this.$instance.post(`/app/appaicopilotinfo/list?current=${this.current}&size=10&content=${this.searchVal}`).then(res => {
|
||||||
|
if(res.code == 0 && res.data.records.length) {
|
||||||
|
res.data.records.map((item) => {
|
||||||
|
if(item.sdkFileUrl) {
|
||||||
|
item.isPlay = false
|
||||||
|
}
|
||||||
|
})
|
||||||
|
this.messageList = this.current == 1 ? res.data.records : [...res.data.records, ...this.messageList]
|
||||||
|
var idPage = res.data.records.length-1
|
||||||
|
this.$nextTick(() => {
|
||||||
|
uni.pageScrollTo({
|
||||||
|
duration: 300,
|
||||||
|
selector: this.current == 1 ? `.item${this.messageList.length-1}` : `.item${idPage}`
|
||||||
|
});
|
||||||
|
})
|
||||||
|
this.pages = res.data.pages
|
||||||
|
this.$hideLoading()
|
||||||
|
}
|
||||||
|
})
|
||||||
|
},
|
||||||
|
getSearchList() {
|
||||||
|
this.current = 1
|
||||||
|
this.getHistoryList()
|
||||||
|
},
|
||||||
|
handerClear() {
|
||||||
|
this.searchVal = ''
|
||||||
|
this.getSearchList()
|
||||||
|
},
|
||||||
|
play(src, index) {
|
||||||
|
innerAudioContext.stop();
|
||||||
|
if(this.messageList[index].isPlay) {
|
||||||
|
innerAudioContext.onStop(() => {
|
||||||
|
this.messageList[index].isPlay = false
|
||||||
|
})
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
this.messageList.map((item) => {
|
||||||
|
if(item.sdkFileUrl) {
|
||||||
|
item.isPlay = false
|
||||||
|
}
|
||||||
|
})
|
||||||
|
this.messageList[index].isPlay = true
|
||||||
|
innerAudioContext.src = src;
|
||||||
|
|
||||||
|
this.$nextTick(() => {
|
||||||
|
innerAudioContext.play();
|
||||||
|
})
|
||||||
|
innerAudioContext.onEnded(() => {
|
||||||
|
this.messageList[index].isPlay = false
|
||||||
|
})
|
||||||
|
},
|
||||||
|
playStop(index) {
|
||||||
|
innerAudioContext.stop();
|
||||||
|
innerAudioContext.onStop(() => {
|
||||||
|
this.messageList[index].isPlay = false
|
||||||
|
})
|
||||||
|
},
|
||||||
|
},
|
||||||
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style scoped lang="scss">
|
<style lang="scss" scoped>
|
||||||
.AppRecord {
|
@import "~dvcp-wui/common";
|
||||||
height: 100vh;
|
page {
|
||||||
background-color: #fff;
|
height: 100%;
|
||||||
position: relative;
|
}
|
||||||
|
.AppRecord {
|
||||||
.list-bg {
|
height: 100vh;
|
||||||
|
background-color: #fff;
|
||||||
|
position: relative;
|
||||||
|
.list-bg {
|
||||||
|
width: 100%;
|
||||||
|
height: 420px;
|
||||||
|
background-image: url("https://cdn.cunwuyun.cn/wechat/biaopin/residentAssistant/content-top-bg.png");
|
||||||
|
position: fixed;
|
||||||
|
top: 184px;
|
||||||
|
left: 0;
|
||||||
|
z-index: 1;
|
||||||
|
background-size: 100vw;
|
||||||
|
background-repeat: no-repeat;
|
||||||
|
.search-content {
|
||||||
|
padding: 32px;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
height: 420px;
|
box-sizing: border-box;
|
||||||
background-image: url("https://cdn.cunwuyun.cn/wechat/biaopin/residentAssistant/content-top-bg.png");
|
|
||||||
position: fixed;
|
position: fixed;
|
||||||
top: 184px;
|
top: 184px;
|
||||||
left: 0;
|
left: 0;
|
||||||
z-index: 1;
|
z-index: 99;
|
||||||
background-size: 100vw;
|
background: linear-gradient(to bottom, #D7EDFE, #EAF5FE);
|
||||||
background-repeat: no-repeat;
|
|
||||||
}
|
}
|
||||||
.list-content {
|
}
|
||||||
|
.list-content {
|
||||||
|
width: 100%;
|
||||||
|
box-sizing: border-box;
|
||||||
|
background-color: #fff;
|
||||||
|
padding: 144px 32px 364px;
|
||||||
|
.send-time {
|
||||||
|
display: block;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
|
line-height: 28px;
|
||||||
|
font-family: PingFangSC-Regular;
|
||||||
|
font-weight: 400;
|
||||||
|
font-size: 20px;
|
||||||
|
color: #999;
|
||||||
|
text-align: center;
|
||||||
|
margin-bottom: 28px;
|
||||||
|
}
|
||||||
|
.user-img {
|
||||||
|
display: inline-block;
|
||||||
|
width: 72px;
|
||||||
|
height: 72px;
|
||||||
|
vertical-align: top;
|
||||||
|
}
|
||||||
|
.item {
|
||||||
|
display: inline-block;
|
||||||
|
max-width: 440px;
|
||||||
|
border-radius: 8px;
|
||||||
|
padding: 18px;
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
background-color: #fff;
|
margin-bottom: 28px;
|
||||||
padding: 0 32px;
|
position: relative;
|
||||||
.item {
|
.voice-div {
|
||||||
margin-bottom: 16px;
|
img {
|
||||||
.content {
|
width: 26px;
|
||||||
padding: 18px;
|
height: 28px;
|
||||||
background: #CCE2FF;
|
}
|
||||||
border-radius: 8px;
|
span {
|
||||||
font-family: PingFangSC-Regular;
|
display: inline-block;
|
||||||
font-weight: 400;
|
|
||||||
font-size: 28px;
|
|
||||||
color: #333;
|
color: #333;
|
||||||
line-height: 40px;
|
font-size: 28px;
|
||||||
word-break: break-all;
|
font-family: PingFangSC;
|
||||||
margin-bottom: 34px;
|
line-height: 28px;
|
||||||
}
|
margin-right: 68px;
|
||||||
.bottom-flex {
|
|
||||||
display: flex;
|
|
||||||
justify-content: space-between;
|
|
||||||
line-height: 40px;
|
|
||||||
font-family: PingFangSC-Regular;
|
|
||||||
font-size: 24px;
|
|
||||||
.time {
|
|
||||||
color: #999;
|
|
||||||
}
|
|
||||||
.view {
|
|
||||||
color: #216AFD;
|
|
||||||
.del-img {
|
|
||||||
width: 40px;
|
|
||||||
height: 40px;
|
|
||||||
margin-left: 40px;
|
|
||||||
vertical-align: bottom;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
p {
|
||||||
|
word-break: break-all;
|
||||||
|
line-height: 40px;
|
||||||
|
font-family: SourceHanSansCN-Regular;
|
||||||
|
font-size: 32px;
|
||||||
|
color: #333;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.item-right {
|
||||||
|
display: flex;
|
||||||
|
justify-content: flex-end;
|
||||||
|
.item {
|
||||||
|
background-color: #CCE2FF;
|
||||||
|
}
|
||||||
|
.user-img {
|
||||||
|
margin-left: 24px;
|
||||||
|
}
|
||||||
|
.u-icon-right {
|
||||||
|
position: absolute;
|
||||||
|
top: 12px;
|
||||||
|
right: -12px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.item-left {
|
||||||
|
.item {
|
||||||
|
background-color: #F3F5F7;
|
||||||
|
}
|
||||||
|
.user-img {
|
||||||
|
margin-right: 24px;
|
||||||
|
}
|
||||||
|
.u-icon-left {
|
||||||
|
position: absolute;
|
||||||
|
top: 12px;
|
||||||
|
left: -12px;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|||||||
Binary file not shown.
|
Before Width: | Height: | Size: 679 B |
Binary file not shown.
|
Before Width: | Height: | Size: 2.7 KiB |
Reference in New Issue
Block a user