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="model">
21         <el-input
22           v-model="queryParams.model"
23           placeholder="请输入模型标识"
24           clearable
25           @keyup.enter="handleQuery"
26           class="!w-240px"
27         />
28       </el-form-item>
29       <el-form-item label="模型平台" prop="platform">
30         <el-input
31           v-model="queryParams.platform"
32           placeholder="请输入模型平台"
33           clearable
34           @keyup.enter="handleQuery"
35           class="!w-240px"
36         />
37       </el-form-item>
38       <el-form-item>
39         <el-button @click="handleQuery"><Icon icon="ep:search" class="mr-5px" /> 搜索</el-button>
40         <el-button @click="resetQuery"><Icon icon="ep:refresh" class="mr-5px" /> 重置</el-button>
41         <el-button
42           type="primary"
43           plain
44           @click="openForm('create')"
45           v-hasPermi="['ai:chat-model:create']"
46         >
47           <Icon icon="ep:plus" class="mr-5px" /> 新增
48         </el-button>
49       </el-form-item>
50     </el-form>
51   </ContentWrap>
52
53   <!-- 列表 -->
54   <ContentWrap>
55     <el-table v-loading="loading" :data="list" :stripe="true" :show-overflow-tooltip="true">
56       <el-table-column label="所属平台" align="center" prop="platform">
57         <template #default="scope">
58           <dict-tag :type="DICT_TYPE.AI_PLATFORM" :value="scope.row.platform" />
59         </template>
60       </el-table-column>
61       <el-table-column label="模型名字" align="center" prop="name" />
62       <el-table-column label="模型标识" align="center" prop="model" />
63       <el-table-column label="API 秘钥" align="center" prop="keyId" min-width="140">
64         <template #default="scope">
65           <span>{{ apiKeyList.find((item) => item.id === scope.row.keyId)?.name }}</span>
66         </template>
67       </el-table-column>
68       <el-table-column label="排序" align="center" prop="sort" />
69       <el-table-column label="状态" align="center" prop="status">
70         <template #default="scope">
71           <dict-tag :type="DICT_TYPE.COMMON_STATUS" :value="scope.row.status" />
72         </template>
73       </el-table-column>
74       <el-table-column label="温度参数" align="center" prop="temperature" />
75       <el-table-column label="回复数 Token 数" align="center" prop="maxTokens" min-width="140" />
76       <el-table-column label="上下文数量" align="center" prop="maxContexts" />
77       <el-table-column label="操作" align="center">
78         <template #default="scope">
79           <el-button
80             link
81             type="primary"
82             @click="openForm('update', scope.row.id)"
83             v-hasPermi="['ai:chat-model:update']"
84           >
85             编辑
86           </el-button>
87           <el-button
88             link
89             type="danger"
90             @click="handleDelete(scope.row.id)"
91             v-hasPermi="['ai:chat-model:delete']"
92           >
93             删除
94           </el-button>
95         </template>
96       </el-table-column>
97     </el-table>
98     <!-- 分页 -->
99     <Pagination
100       :total="total"
101       v-model:page="queryParams.pageNo"
102       v-model:limit="queryParams.pageSize"
103       @pagination="getList"
104     />
105   </ContentWrap>
106
107   <!-- 表单弹窗:添加/修改 -->
108   <ChatModelForm ref="formRef" @success="getList" />
109 </template>
110
111 <script setup lang="ts">
112 import { ChatModelApi, ChatModelVO } from '@/api/ai/model/chatModel'
113 import ChatModelForm from './ChatModelForm.vue'
114 import { DICT_TYPE } from '@/utils/dict'
115 import { ApiKeyApi, ApiKeyVO } from '@/api/ai/model/apiKey'
116
117 /** API 聊天模型 列表 */
118 defineOptions({ name: 'AiChatModel' })
119
120 const message = useMessage() // 消息弹窗
121 const { t } = useI18n() // 国际化
122
123 const loading = ref(true) // 列表的加载中
124 const list = ref<ChatModelVO[]>([]) // 列表的数据
125 const total = ref(0) // 列表的总页数
126 const queryParams = reactive({
127   pageNo: 1,
128   pageSize: 10,
129   name: undefined,
130   model: undefined,
131   platform: undefined
132 })
133 const queryFormRef = ref() // 搜索的表单
134 const apiKeyList = ref([] as ApiKeyVO[]) // API 密钥列表
135
136 /** 查询列表 */
137 const getList = async () => {
138   loading.value = true
139   try {
140     const data = await ChatModelApi.getChatModelPage(queryParams)
141     list.value = data.list
142     total.value = data.total
143   } finally {
144     loading.value = false
145   }
146 }
147
148 /** 搜索按钮操作 */
149 const handleQuery = () => {
150   queryParams.pageNo = 1
151   getList()
152 }
153
154 /** 重置按钮操作 */
155 const resetQuery = () => {
156   queryFormRef.value.resetFields()
157   handleQuery()
158 }
159
160 /** 添加/修改操作 */
161 const formRef = ref()
162 const openForm = (type: string, id?: number) => {
163   formRef.value.open(type, id)
164 }
165
166 /** 删除按钮操作 */
167 const handleDelete = async (id: number) => {
168   try {
169     // 删除的二次确认
170     await message.delConfirm()
171     // 发起删除
172     await ChatModelApi.deleteChatModel(id)
173     message.success(t('common.delSuccess'))
174     // 刷新列表
175     await getList()
176   } catch {}
177 }
178
179 /** 初始化 **/
180 onMounted(async () => {
181   getList()
182   // 获得下拉数据
183   apiKeyList.value = await ApiKeyApi.getApiKeySimpleList()
184 })
185 </script>