| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271 |
- <template>
- <div v-if="isVisible" class="fixed inset-0 bg-black bg-opacity-50 flex items-center justify-center z-50">
- <div class="bg-white rounded-lg p-6 max-w-2xl w-full mx-4 max-h-[90vh] overflow-y-auto">
- <div class="flex justify-between items-center mb-6">
- <h2 class="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="space-y-8">
- <!-- 302.ai 推荐广告 -->
- <div class="hidden bg-gradient-to-r from-blue-50 to-purple-50 border-2 border-blue-200 rounded-lg p-4">
- <div class="flex items-start gap-4">
- <div class="flex-shrink-0">
- <div class="w-12 h-12 bg-gradient-to-br from-blue-500 to-purple-600 rounded-lg flex items-center justify-center">
- <span class="text-white text-lg font-bold">302</span>
- </div>
- </div>
- <div class="flex-1">
- <div class="flex items-center gap-2 mb-2">
- <h3 class="text-lg font-semibold text-gray-800">🚀 推荐API服务商</h3>
- </div>
- <p class="text-sm text-gray-600 mb-3">
- 本项目正在使用 <strong>302.ai</strong> 提供的高质量AI API服务。302.ai 提供稳定可靠的AI模型接口,支持多种主流大模型,价格优惠,服务稳定。
- </p>
- <div class="flex flex-wrap gap-2 mb-3">
- <span class="bg-green-100 text-green-800 text-xs px-2 py-1 rounded">✓ 多模型支持</span>
- <span class="bg-green-100 text-green-800 text-xs px-2 py-1 rounded">✓ 价格优惠</span>
- <span class="bg-green-100 text-green-800 text-xs px-2 py-1 rounded">✓ 服务稳定</span>
- <span class="bg-green-100 text-green-800 text-xs px-2 py-1 rounded">✓ 快速接入</span>
- </div>
- <a
- href="https://302.ai/"
- target="_blank"
- class="inline-flex items-center gap-2 bg-blue-500 hover:bg-blue-600 text-white text-sm px-4 py-2 rounded-lg transition-colors"
- >
- <span>访问 302.ai</span>
- <svg class="w-4 h-4" 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 class="border rounded-lg p-4">
- <h3 class="text-lg font-semibold text-gray-800 mb-4 flex items-center">
- <svg class="w-5 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>
- <div class="grid grid-cols-1 md:grid-cols-2 gap-4">
- <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/"
- />
- </div>
- <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"
- />
- </div>
- <div class="md:col-span-2">
- <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 class="border rounded-lg p-4">
- <h3 class="text-lg font-semibold text-gray-800 mb-4 flex items-center">
- <svg class="w-5 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>
- <div class="grid grid-cols-1 md:grid-cols-2 gap-4">
- <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/"
- />
- </div>
- <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 class="md:col-span-2">
- <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 class="flex justify-end space-x-3 mt-8 pt-4 border-t">
- <button @click="resetToDefault" class="px-4 py-2 text-gray-600 border border-gray-300 rounded-md hover:bg-gray-50 transition-colors">恢复默认</button>
- <button @click="closeModal" class="px-4 py-2 text-gray-600 border border-gray-300 rounded-md hover:bg-gray-50 transition-colors">取消</button>
- <button @click="saveSettings" class="px-4 py-2 bg-blue-500 text-white rounded-md hover:bg-blue-600 transition-colors">保存设置</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 textConfig = reactive({
- baseUrl: '',
- apiKey: '',
- model: '',
- temperature: 0.7,
- timeout: 300000
- })
- // 图片生成配置
- const imageConfig = reactive({
- baseUrl: '',
- apiKey: '',
- model: ''
- })
- // 监听弹窗显示状态,加载当前配置
- watch(
- () => props.isVisible,
- visible => {
- if (visible) {
- loadCurrentSettings()
- }
- }
- )
- // 加载当前设置
- 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>
|