houzhongjian
2024-08-08 820397e43a0b64d35c6d31d2a55475061438593b
提交 | 用户 | 时间
820397 1 <template>
H 2   <ContentWrap>
3     <!-- 搜索工作栏 -->
4     <el-form
5       class="-mb-15px"
6       :model="queryParams"
7       ref="queryFormRef"
8       :inline="true"
9       label-width="68px"
10     >
11       <el-form-item label="角色名称" prop="name">
12         <el-input
13           v-model="queryParams.name"
14           placeholder="请输入角色名称"
15           clearable
16           @keyup.enter="handleQuery"
17           class="!w-240px"
18         />
19       </el-form-item>
20       <el-form-item label="角色类别" prop="category">
21         <el-input
22           v-model="queryParams.category"
23           placeholder="请输入角色类别"
24           clearable
25           @keyup.enter="handleQuery"
26           class="!w-240px"
27         />
28       </el-form-item>
29       <el-form-item label="是否公开" prop="publicStatus">
30         <el-select
31           v-model="queryParams.publicStatus"
32           placeholder="请选择是否公开"
33           clearable
34           class="!w-240px"
35         >
36           <el-option
37             v-for="dict in getBoolDictOptions(DICT_TYPE.INFRA_BOOLEAN_STRING)"
38             :key="dict.value"
39             :label="dict.label"
40             :value="dict.value"
41           />
42         </el-select>
43       </el-form-item>
44       <el-form-item>
45         <el-button @click="handleQuery"><Icon icon="ep:search" class="mr-5px" /> 搜索</el-button>
46         <el-button @click="resetQuery"><Icon icon="ep:refresh" class="mr-5px" /> 重置</el-button>
47         <el-button
48           type="primary"
49           plain
50           @click="openForm('create')"
51           v-hasPermi="['ai:chat-role:create']"
52         >
53           <Icon icon="ep:plus" class="mr-5px" /> 新增
54         </el-button>
55       </el-form-item>
56     </el-form>
57   </ContentWrap>
58
59   <!-- 列表 -->
60   <ContentWrap>
61     <el-table v-loading="loading" :data="list" :stripe="true" :show-overflow-tooltip="true">
62       <el-table-column label="角色名称" align="center" prop="name" />
63       <el-table-column label="绑定模型" align="center" prop="modelName" />
64       <el-table-column label="角色头像" align="center" prop="avatar">
65         <template #default="scope">
66           <el-image :src="scope?.row.avatar" class="w-32px h-32px" />
67         </template>
68       </el-table-column>
69       <el-table-column label="角色类别" align="center" prop="category" />
70       <el-table-column label="角色描述" align="center" prop="description" />
71       <el-table-column label="角色设定" align="center" prop="systemMessage" />
72       <el-table-column label="是否公开" align="center" prop="publicStatus">
73         <template #default="scope">
74           <dict-tag :type="DICT_TYPE.INFRA_BOOLEAN_STRING" :value="scope.row.publicStatus" />
75         </template>
76       </el-table-column>
77       <el-table-column label="状态" align="center" prop="status">
78         <template #default="scope">
79           <dict-tag :type="DICT_TYPE.COMMON_STATUS" :value="scope.row.status" />
80         </template>
81       </el-table-column>
82       <el-table-column label="角色排序" align="center" prop="sort" />
83       <el-table-column label="操作" align="center">
84         <template #default="scope">
85           <el-button
86             link
87             type="primary"
88             @click="openForm('update', scope.row.id)"
89             v-hasPermi="['ai:chat-role:update']"
90           >
91             编辑
92           </el-button>
93           <el-button
94             link
95             type="danger"
96             @click="handleDelete(scope.row.id)"
97             v-hasPermi="['ai:chat-role:delete']"
98           >
99             删除
100           </el-button>
101         </template>
102       </el-table-column>
103     </el-table>
104     <!-- 分页 -->
105     <Pagination
106       :total="total"
107       v-model:page="queryParams.pageNo"
108       v-model:limit="queryParams.pageSize"
109       @pagination="getList"
110     />
111   </ContentWrap>
112
113   <!-- 表单弹窗:添加/修改 -->
114   <ChatRoleForm ref="formRef" @success="getList" />
115 </template>
116
117 <script setup lang="ts">
118 import { getBoolDictOptions, DICT_TYPE } from '@/utils/dict'
119 import { ChatRoleApi, ChatRoleVO } from '@/api/ai/model/chatRole'
120 import ChatRoleForm from './ChatRoleForm.vue'
121
122 /** AI 聊天角色 列表 */
123 defineOptions({ name: 'AiChatRole' })
124
125 const message = useMessage() // 消息弹窗
126 const { t } = useI18n() // 国际化
127
128 const loading = ref(true) // 列表的加载中
129 const list = ref<ChatRoleVO[]>([]) // 列表的数据
130 const total = ref(0) // 列表的总页数
131 const queryParams = reactive({
132   pageNo: 1,
133   pageSize: 10,
134   name: undefined,
135   category: undefined,
136   publicStatus: true
137 })
138 const queryFormRef = ref() // 搜索的表单
139
140 /** 查询列表 */
141 const getList = async () => {
142   loading.value = true
143   try {
144     const data = await ChatRoleApi.getChatRolePage(queryParams)
145     list.value = data.list
146     total.value = data.total
147   } finally {
148     loading.value = false
149   }
150 }
151
152 /** 搜索按钮操作 */
153 const handleQuery = () => {
154   queryParams.pageNo = 1
155   getList()
156 }
157
158 /** 重置按钮操作 */
159 const resetQuery = () => {
160   queryFormRef.value.resetFields()
161   handleQuery()
162 }
163
164 /** 添加/修改操作 */
165 const formRef = ref()
166 const openForm = (type: string, id?: number) => {
167   formRef.value.open(type, id)
168 }
169
170 /** 删除按钮操作 */
171 const handleDelete = async (id: number) => {
172   try {
173     // 删除的二次确认
174     await message.delConfirm()
175     // 发起删除
176     await ChatRoleApi.deleteChatRole(id)
177     message.success(t('common.delSuccess'))
178     // 刷新列表
179     await getList()
180   } catch {}
181 }
182
183 /** 初始化 **/
184 onMounted(() => {
185   getList()
186 })
187 </script>