| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330 |
- <template>
- <div v-if="isVisible" class="fixed inset-0 bg-black bg-opacity-50 flex items-center justify-center z-50 p-2 md:p-4">
- <div class="bg-white rounded-lg max-w-2xl w-full max-h-[95vh] md:max-h-[90vh] flex flex-col">
- <!-- 固定头部 -->
- <div class="flex justify-between items-center p-4 md:p-6 pb-3 md:pb-4 border-b">
- <h2 class="text-xl md:text-2xl font-bold text-gray-800">系统设置</h2>
- <button @click="closeModal" class="text-gray-500 hover:text-gray-700">
- <svg class="w-6 h-6" fill="none" stroke="currentColor" viewBox="0 0 24 24">
- <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M6 18L18 6M6 6l12 12"></path>
- </svg>
- </button>
- </div>
- <!-- 可滚动内容区域 -->
- <div class="flex-1 overflow-y-auto px-4 md:px-6 py-3 md:py-4">
- <div class="space-y-4 md:space-y-6">
- <!-- 302.AI 推荐广告 -->
- <div class="bg-gradient-to-r from-blue-50 to-purple-50 border border-blue-200 rounded-lg p-3 md:p-4">
- <!-- 手机端:垂直布局,桌面端:水平布局 -->
- <div class="flex flex-col md:flex-row md:items-center gap-3">
- <div class="flex-shrink-0 flex justify-center md:justify-start">
- <div class="w-10 h-10 from-blue-500 to-purple-600 rounded-xl flex items-center justify-center">
- <img src="/logo.svg" alt="302.AI Logo" class="w-8 h-8 md:w-10 md:h-10" />
- </div>
- </div>
- <div class="flex-1 text-center md:text-left">
- <h3 class="text-sm md:text-base font-semibold text-gray-800 mb-1">🚀 推荐API服务商</h3>
- <p class="text-xs text-gray-600 mb-2 leading-relaxed">
- 本项目正在使用 <strong>302.AI</strong> 提供的高质量AI API服务!<strong>302.AI</strong>
- 是一个按用量付费的企业级AI资源平台,提供市场上最新、最全面的AI模型和API,以及多种开箱即用的在线AI应用
- </p>
- <div class="flex flex-col md:flex-row items-center gap-2">
- <div class="flex flex-wrap gap-1 justify-center md:justify-start">
- <span class="bg-green-100 text-green-800 text-xs px-2 py-0.5 rounded">✓ 多模型</span>
- <span class="bg-green-100 text-green-800 text-xs px-2 py-0.5 rounded">✓ 优惠</span>
- <span class="bg-green-100 text-green-800 text-xs px-2 py-0.5 rounded">✓ 稳定</span>
- </div>
- <a
- href="https://share.302.AI/DymMSI"
- target="_blank"
- class="inline-flex items-center gap-1 bg-blue-500 hover:bg-blue-600 text-white text-xs px-3 py-1 rounded transition-colors md:ml-auto"
- >
- <span>访问</span>
- <svg class="w-3 h-3" fill="none" stroke="currentColor" viewBox="0 0 24 24">
- <path
- stroke-linecap="round"
- stroke-linejoin="round"
- stroke-width="2"
- d="M10 6H6a2 2 0 00-2 2v10a2 2 0 002 2h10a2 2 0 002-2v-4M14 4h6m0 0v6m0-6L10 14"
- ></path>
- </svg>
- </a>
- </div>
- </div>
- </div>
- </div>
- <!-- 菜谱生成模型配置 -->
- <div class="border rounded-lg">
- <button
- @click="isTextConfigExpanded = !isTextConfigExpanded"
- class="w-full p-3 md:p-4 flex items-center justify-between text-left hover:bg-gray-50 transition-colors"
- >
- <h3 class="text-base md:text-lg font-semibold text-gray-800 flex items-center">
- <svg class="w-4 h-4 md:w-5 md:h-5 mr-2 text-blue-500" fill="none" stroke="currentColor" viewBox="0 0 24 24">
- <path
- stroke-linecap="round"
- stroke-linejoin="round"
- stroke-width="2"
- d="M9 12h6m-6 4h6m2 5H7a2 2 0 01-2-2V5a2 2 0 012-2h5.586a1 1 0 01.707.293l5.414 5.414a1 1 0 01.293.707V19a2 2 0 01-2 2z"
- ></path>
- </svg>
- 菜谱生成模型配置
- </h3>
- <svg
- class="w-5 h-5 text-gray-500 transition-transform"
- :class="{ 'rotate-180': isTextConfigExpanded }"
- fill="none"
- stroke="currentColor"
- viewBox="0 0 24 24"
- >
- <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M19 9l-7 7-7-7"></path>
- </svg>
- </button>
- <div v-show="isTextConfigExpanded" class="px-3 md:px-4 pb-3 md:pb-4">
- <div class="space-y-3 md:space-y-4">
- <!-- API地址单独一行 -->
- <div>
- <label class="block text-sm font-medium text-gray-700 mb-1">API地址</label>
- <input
- v-model="textConfig.baseUrl"
- type="text"
- class="w-full px-3 py-2 border border-gray-300 rounded-md focus:outline-none focus:ring-2 focus:ring-blue-500"
- placeholder="https://api.example.com/v1/"
- />
- <p class="text-xs text-gray-500 mt-1">基础API地址,系统会自动添加 /chat/completions 路径</p>
- </div>
- <!-- 其他配置项两列布局 -->
- <div class="grid grid-cols-1 md:grid-cols-2 gap-3 md:gap-4">
- <div>
- <label class="block text-sm font-medium text-gray-700 mb-1">API密钥</label>
- <input
- v-model="textConfig.apiKey"
- type="password"
- class="w-full px-3 py-2 border border-gray-300 rounded-md focus:outline-none focus:ring-2 focus:ring-blue-500"
- placeholder="输入API密钥"
- />
- </div>
- <div>
- <label class="block text-sm font-medium text-gray-700 mb-1">模型名称</label>
- <input
- v-model="textConfig.model"
- type="text"
- class="w-full px-3 py-2 border border-gray-300 rounded-md focus:outline-none focus:ring-2 focus:ring-blue-500"
- placeholder="yi-lightning"
- />
- </div>
- <div>
- <label class="block text-sm font-medium text-gray-700 mb-1">温度参数 (0-1)</label>
- <input
- v-model.number="textConfig.temperature"
- type="number"
- min="0"
- max="1"
- step="0.1"
- class="w-full px-3 py-2 border border-gray-300 rounded-md focus:outline-none focus:ring-2 focus:ring-blue-500"
- />
- <p class="text-xs text-gray-500 mt-1">控制回答的创造性,0.7为推荐值</p>
- </div>
- <div>
- <label class="block text-sm font-medium text-gray-700 mb-1">超时时间 (毫秒)</label>
- <input
- v-model.number="textConfig.timeout"
- type="number"
- class="w-full px-3 py-2 border border-gray-300 rounded-md focus:outline-none focus:ring-2 focus:ring-blue-500"
- placeholder="300000"
- />
- </div>
- </div>
- </div>
- </div>
- </div>
- <!-- 图片生成模型配置 -->
- <div class="border rounded-lg">
- <button
- @click="isImageConfigExpanded = !isImageConfigExpanded"
- class="w-full p-3 md:p-4 flex items-center justify-between text-left hover:bg-gray-50 transition-colors"
- >
- <h3 class="text-base md:text-lg font-semibold text-gray-800 flex items-center">
- <svg class="w-4 h-4 md:w-5 md:h-5 mr-2 text-green-500" fill="none" stroke="currentColor" viewBox="0 0 24 24">
- <path
- stroke-linecap="round"
- stroke-linejoin="round"
- stroke-width="2"
- d="M4 16l4.586-4.586a2 2 0 012.828 0L16 16m-2-2l1.586-1.586a2 2 0 012.828 0L20 14m-6-6h.01M6 20h12a2 2 0 002-2V6a2 2 0 00-2-2H6a2 2 0 00-2 2v12a2 2 0 002 2z"
- ></path>
- </svg>
- 图片生成模型配置
- </h3>
- <svg
- class="w-5 h-5 text-gray-500 transition-transform"
- :class="{ 'rotate-180': isImageConfigExpanded }"
- fill="none"
- stroke="currentColor"
- viewBox="0 0 24 24"
- >
- <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M19 9l-7 7-7-7"></path>
- </svg>
- </button>
- <div v-show="isImageConfigExpanded" class="px-3 md:px-4 pb-3 md:pb-4">
- <div class="space-y-3 md:space-y-4">
- <!-- API地址单独一行 -->
- <div>
- <label class="block text-sm font-medium text-gray-700 mb-1">API地址</label>
- <input
- v-model="imageConfig.baseUrl"
- type="text"
- class="w-full px-3 py-2 border border-gray-300 rounded-md focus:outline-none focus:ring-2 focus:ring-green-500"
- placeholder="https://api.example.com/v4/images/generations"
- />
- <p class="text-xs text-gray-500 mt-1">图片生成API的完整地址,包含具体的端点路径</p>
- </div>
- <!-- 其他配置项两列布局 -->
- <div class="grid grid-cols-1 md:grid-cols-2 gap-3 md:gap-4">
- <div>
- <label class="block text-sm font-medium text-gray-700 mb-1">API密钥</label>
- <input
- v-model="imageConfig.apiKey"
- type="password"
- class="w-full px-3 py-2 border border-gray-300 rounded-md focus:outline-none focus:ring-2 focus:ring-green-500"
- placeholder="输入API密钥"
- />
- </div>
- <div>
- <label class="block text-sm font-medium text-gray-700 mb-1">模型名称</label>
- <input
- v-model="imageConfig.model"
- type="text"
- class="w-full px-3 py-2 border border-gray-300 rounded-md focus:outline-none focus:ring-2 focus:ring-green-500"
- placeholder="cogview-3-flash"
- />
- </div>
- </div>
- </div>
- </div>
- </div>
- </div>
- </div>
- <!-- 固定底部按钮 -->
- <div class="flex flex-col md:flex-row justify-end gap-2 md:gap-3 p-4 md:p-6 pt-3 md:pt-4 border-t bg-gray-50 rounded-b-lg">
- <button @click="resetToDefault" class="px-4 py-2 text-gray-600 border border-gray-300 rounded-md hover:bg-gray-50 transition-colors text-sm md:text-base">
- 恢复默认
- </button>
- <button @click="closeModal" class="px-4 py-2 text-gray-600 border border-gray-300 rounded-md hover:bg-gray-50 transition-colors text-sm md:text-base">取消</button>
- <button @click="saveSettings" class="px-4 py-2 bg-blue-500 text-white rounded-md hover:bg-blue-600 transition-colors text-sm md:text-base">保存设置</button>
- </div>
- </div>
- </div>
- </template>
- <script setup>
- import { ref, reactive, watch } from 'vue'
- import { useSettingsStore } from '../stores/settings'
- const props = defineProps({
- isVisible: {
- type: Boolean,
- default: false
- }
- })
- const emit = defineEmits(['close', 'save'])
- const settingsStore = useSettingsStore()
- // 折叠状态
- const isTextConfigExpanded = ref(true) // 默认展开菜谱生成模型配置
- const isImageConfigExpanded = ref(false)
- // 文本生成配置
- const textConfig = reactive({
- baseUrl: '',
- apiKey: '',
- model: '',
- temperature: 0.7,
- timeout: 300000
- })
- // 图片生成配置
- const imageConfig = reactive({
- baseUrl: '',
- apiKey: '',
- model: ''
- })
- // 监听弹窗显示状态,加载当前配置并控制背景滚动
- watch(
- () => props.isVisible,
- visible => {
- if (visible) {
- loadCurrentSettings()
- // 阻止背景页面滚动
- document.body.style.overflow = 'hidden'
- } else {
- // 恢复背景页面滚动
- document.body.style.overflow = ''
- }
- }
- )
- // 加载当前设置
- const loadCurrentSettings = () => {
- const settings = settingsStore.getSettings()
- // 加载文本生成配置
- textConfig.baseUrl = settings.textGeneration.baseUrl
- textConfig.apiKey = settings.textGeneration.apiKey
- textConfig.model = settings.textGeneration.model
- textConfig.temperature = settings.textGeneration.temperature
- textConfig.timeout = settings.textGeneration.timeout
- // 加载图片生成配置
- imageConfig.baseUrl = settings.imageGeneration.baseUrl
- imageConfig.apiKey = settings.imageGeneration.apiKey
- imageConfig.model = settings.imageGeneration.model
- }
- // 保存设置
- const saveSettings = () => {
- const newSettings = {
- textGeneration: {
- baseUrl: textConfig.baseUrl,
- apiKey: textConfig.apiKey,
- model: textConfig.model,
- temperature: textConfig.temperature,
- timeout: textConfig.timeout
- },
- imageGeneration: {
- baseUrl: imageConfig.baseUrl,
- apiKey: imageConfig.apiKey,
- model: imageConfig.model
- }
- }
- settingsStore.updateSettings(newSettings)
- emit('save')
- closeModal()
- }
- // 恢复默认设置
- const resetToDefault = () => {
- settingsStore.resetToDefault()
- loadCurrentSettings()
- }
- // 关闭弹窗
- const closeModal = () => {
- emit('close')
- }
- </script>
|