feat: 完成细节调整

This commit is contained in:
ccnetcore
2025-06-30 21:08:32 +08:00
parent 01a5ad5302
commit ee53b3d9c4
4 changed files with 51 additions and 26 deletions

View File

@@ -20,7 +20,7 @@ const userStore = useUserStore();
const modelStore = useModelStore();
// 检查模型是否可用
function isModelAvailable(item: GetSessionListVO) {
return isUserRoleVip.value || item.modelName === 'DeepSeek-R1';
return isUserRoleVip.value || item.modelName === 'DeepSeek-R1' || userStore.userInfo?.user?.userName === 'cc';
}
onMounted(async () => {
@@ -68,7 +68,7 @@ function handleModelClick(item: GetSessionListVO) {
<p class="mb-2">
${
isUserRoleVip.value
? '您已是尊贵会员,享受全部 AI 模型与专属服务。感谢您的支持!'
? '您已是尊贵会员,享受全部 AI 模型与专属服务。感谢支持!'
: '解锁所有 AI 模型,无限加速,专属客服,尽享尊贵体验。'
}
</p>