【增加】角色仓库 和 公开角色仓库

This commit is contained in:
cherishsince 2024-05-15 16:55:37 +08:00
parent 76903f6868
commit 986f50c6da
3 changed files with 221 additions and 0 deletions

View File

@ -14,6 +14,15 @@ export interface ChatRoleVO {
status: number // 状态
}
// AI 聊天角色 分页请求 vo
export interface ChatRolePageReqVO {
name?: string // 角色名称
category?: string // 角色类别
publicStatus: boolean // 是否公开
pageNo: number // 是否公开
pageSize: number // 是否公开
}
// AI 聊天角色 API
export const ChatRoleApi = {
// 查询聊天角色分页
@ -39,5 +48,10 @@ export const ChatRoleApi = {
// 删除聊天角色
deleteChatRole: async (id: number) => {
return await request.delete({ url: `/ai/chat-role/delete?id=` + id })
},
// 获取 my role
getMyRole: async (params: ChatRolePageReqVO) => {
return await request.get({ url: `/ai/chat-role/my-page`, params})
}
}

View File

@ -0,0 +1,97 @@
<template>
<div class="card-list">
<el-card class="card" body-class="card-body" v-for="role in roleList" :key="role.id">
<div>
<img class="avatar" :src="role.avatar"/>
</div>
<div class="right-container">
<div class="content-container">
<div class="title">{{ role.name }}</div>
<div class="description">{{ role.description }}</div>
</div>
<div class="btn-container">
<el-button type="primary" size="small">使用</el-button>
</div>
</div>
</el-card>
</div>
</template>
<script setup lang="ts">
import {ChatRoleVO} from '@/api/ai/model/chatRole'
import {PropType} from "vue";
//
const props = defineProps({
roleList: {
type: Array as PropType<ChatRoleVO[]>,
required: true
}
})
onMounted(() => {
console.log('props', props.roleList)
})
</script>
<style lang="scss">
// card body
.card-body {
width: auto;
max-width: 300px;
padding: 15px;
display: flex;
flex-direction: row;
justify-content: flex-start;
}
</style>
<style scoped lang="scss">
//
.card-list {
display: flex;
flex-direction: row;
flex-wrap: wrap;
.card {
margin-right: 20px;
border-radius: 10px;
.avatar {
width: 40px;
border-radius: 10px;
overflow: hidden;
}
.right-container {
margin-left: 10px;
.content-container {
.title {
font-size: 18px;
font-weight: bold;
color: #3e3e3e;
}
.description {
margin-top: 10px;
font-size: 14px;
color: #6a6a6a;
}
}
.btn-container {
display: flex;
flex-direction: row-reverse;
margin-top: 15px;
}
}
}
}
</style>

View File

@ -0,0 +1,110 @@
<!-- chat 角色仓库 -->
<template>
<el-container class="role-container">
<Header title="角色仓库"/>
<el-main class="role-main">
<el-tabs v-model="activeRole" class="demo-tabs" @tab-click="handleTabsClick">
<el-tab-pane label="我的角色" name="my-role">
<RoleList :role-list="myRoleList" />
</el-tab-pane>
<el-tab-pane label="公共角色" name="public-role">
<RoleList :role-list="publicRoleList" />
</el-tab-pane>
</el-tabs>
</el-main>
</el-container>
</template>
<!-- setup -->
<script setup lang="ts">
import {ref} from "vue";
import Header from '@/views/ai/chat/components/Header.vue'
import RoleList from './RoleList.vue'
import {ChatRoleApi, ChatRolePageReqVO, ChatRoleVO} from '@/api/ai/model/chatRole'
import {TabsPaneContext} from "element-plus";
//
const activeRole = ref<string>('my-role') //
const loadding = ref<boolean>(true) //
const myPageNo = ref<number>(1) // my
const myPageSize = ref<number>(50) // my
const myRoleList = ref<ChatRoleVO[]>([]) // my
const publicPageNo = ref<number>(1) // public
const publicPageSize = ref<number>(50) // public
const publicRoleList = ref<ChatRoleVO[]>([]) // public
// tabs
const handleTabsClick = async (tab: TabsPaneContext) => {
//
const activeTabs = tab.paneName + ''
activeRole.value = activeTabs;
//
await getActiveTabsRole()
}
// my role
const getMyRole = async (pageNo: number, pageSize: number) => {
const params:ChatRolePageReqVO = {
pageNo,
pageSize,
publicStatus: false
}
const { total, list } = await ChatRoleApi.getMyRole(params)
myRoleList.value = list
console.log('myRoleList 获取成功', list)
console.log('myRoleList 获取成功', myRoleList.value)
}
// public role
const getPublicRole = async (pageNo: number, pageSize: number) => {
const params:ChatRolePageReqVO = {
pageNo,
pageSize,
publicStatus: true
}
const { total, list } = await ChatRoleApi.getMyRole(params)
console.log(list)
publicRoleList.value = list
}
// tabs
const getActiveTabsRole = async () => {
if (activeRole.value === 'my-role') {
await getMyRole(myPageNo.value, myPageSize.value)
} else {
await getPublicRole(myPageNo.value, myPageSize.value)
}
}
//
onMounted( async () => {
// role
await getActiveTabsRole()
})
</script>
<!-- 样式 -->
<style scoped lang="scss">
//
.role-container {
position: absolute;
margin: 0;
padding: 0;
width: 100%;
height: 100%;
left: 0;
right: 0;
top: 0;
bottom: 0;
background-color: #ffffff;
display: flex;
flex-direction: column;
.role-main {
}
}
</style>