fix:模型选择限制

This commit is contained in:
Gsh
2025-06-30 17:53:59 +08:00
parent f12f0e1f84
commit 01a5ad5302
3 changed files with 74 additions and 10 deletions

View File

View File

@@ -1,13 +1,27 @@
<!-- 切换模型 -->
<script setup lang="ts">
import type { GetSessionListVO } from '@/api/model/types';
import { Lock } from '@element-plus/icons-vue';
import { useRouter } from 'vue-router';
import Popover from '@/components/Popover/index.vue';
import SvgIcon from '@/components/SvgIcon/index.vue';
import { useUserStore } from '@/stores';
import { useModelStore } from '@/stores/modules/model';
const router = useRouter();
// 用户角色
const isUserRoleVip = computed(() => {
const roles = userStore.userInfo?.roles ?? [];
return roles.some(role => role.roleCode === 'YiXinAi-Vip');
});
const userStore = useUserStore();
const modelStore = useModelStore();
// 检查模型是否可用
function isModelAvailable(item: GetSessionListVO) {
return isUserRoleVip.value || item.modelName === 'DeepSeek-R1';
}
onMounted(async () => {
await modelStore.requestModelList();
@@ -42,13 +56,50 @@ async function showPopover() {
// 获取最新的模型列表
await modelStore.requestModelList();
}
// 用户角色
// const isUserRoleVip = computed(() => {
// const roles = userStore.userInfo?.roles ?? [];
// return roles.some(role => role.roleCode === 'YiXinAi-Vip');
// });
// 点击
function handleClick(item: GetSessionListVO) {
// 处理模型点击
function handleModelClick(item: GetSessionListVO) {
if (!isModelAvailable(item)) {
ElMessageBox.confirm(
`
<div class="text-center leading-relaxed">
<h3 class="text-lg font-bold mb-3">${isUserRoleVip.value ? 'YiXinAI-VIP 会员' : '成为 YiXinAI-VIP'}</h3>
<p class="mb-2">
${
isUserRoleVip.value
? '您已是尊贵会员,享受全部 AI 模型与专属服务。感谢您的支持!'
: '解锁所有 AI 模型,无限加速,专属客服,尽享尊贵体验。'
}
</p>
${
isUserRoleVip.value
? '<p class="text-sm text-gray-500">您可随时访问产品页面查看更多特权内容。</p>'
: '<p class="text-sm text-gray-500">点击下方按钮,立即升级为 VIP 会员!</p>'
}
</div>
`,
isUserRoleVip.value ? '会员状态' : '会员尊享',
{
confirmButtonText: '前往产品页面',
cancelButtonText: '关闭',
dangerouslyUseHTMLString: true,
type: 'info',
center: true,
roundButton: true,
},
)
.then(() => {
router.push({
name: 'products', // 使用命名路由
query: { from: isUserRoleVip.value ? 'vip' : 'user' }, // 可选:添加来源标识
});
})
.catch(() => {
// 点击右上角关闭或“关闭”按钮,不执行任何操作
});
}
console.log('handleClick--', item);
modelStore.setCurrentModelInfo(item);
popoverRef.value?.hide?.();
@@ -95,11 +146,21 @@ function handleClick(item: GetSessionListVO) {
>
<template #trigger>
<div
class="popover-content-box-item p-4px font-size-12px text-overflow line-height-16px"
:class="{ 'bg-[rgba(0,0,0,.04)] is-select': item.modelName === currentModelName }"
@click="handleClick(item)"
class="popover-content-box-item p-4px font-size-12px text-overflow line-height-16px relative"
:class="[
{ 'bg-[rgba(0,0,0,.04)] is-select': item.modelName === currentModelName },
{ 'cursor-not-allowed opacity-60': !isModelAvailable(item) },
]"
@click="handleModelClick(item)"
>
{{ item.modelName }}
<!-- VIP锁定图标 -->
<el-icon
v-if="!isModelAvailable(item)"
class="absolute right-1 top-1/2 transform -translate-y-1/2"
>
<Lock />
</el-icon>
</div>
</template>
<div

View File

@@ -15,8 +15,11 @@ const userRole = computed(() => {
return roles.some(role => role.roleCode === 'YiXinAi-Vip') ? 'vip' : 'user';
});
// const src = computed(
// () => userStore.userInfo?.avatar ?? 'https://avatars.githubusercontent.com/u/76239030',
// );
const src = computed(
() => userStore.userInfo?.avatar ?? 'https://avatars.githubusercontent.com/u/76239030',
() => userStore.userInfo.user.icon ? `${import.meta.env.VITE_WEB_BASE_API}/file/${userStore.userInfo.user.icon}` : `@/assets/images/logo.png`,
);
/* 弹出面板 开始 */