mirror of
https://github.com/yangjian102621/geekai.git
synced 2026-09-17 18:57:13 +00:00
feat: 迁移 geekai-plus v4.3.1 到开源版
- 同步 Plus v4.3.1 功能源并移除商业 License 闭环 - 更新开源镜像命名、Docker 部署版本和 geekai 数据库配置 - 补充前端 ESLint 检查配置并修复存量解析与模板问题 - 保留 JWT、管理员权限、API Key 和 OAuth 等正常鉴权机制
This commit is contained in:
@@ -198,10 +198,10 @@ export const useSunoStore = defineStore('suno', () => {
|
||||
let needPull = false
|
||||
const items = []
|
||||
for (let v of res.data.items) {
|
||||
if (v.progress === 100) {
|
||||
if (v.status === 'success') {
|
||||
v.major_model_version = v['raw_data']['major_model_version']
|
||||
}
|
||||
if (v.progress === 0 || v.progress === 102) {
|
||||
if (v.status === 'pending' || v.status === 'in_progress' || v.status === 'downloading') {
|
||||
needPull = true
|
||||
}
|
||||
items.push(v)
|
||||
@@ -236,10 +236,10 @@ export const useSunoStore = defineStore('suno', () => {
|
||||
let needPull = false
|
||||
const firstPageItems = []
|
||||
for (let v of res.data.items) {
|
||||
if (v.progress === 100) {
|
||||
if (v.status === 'success') {
|
||||
v.major_model_version = v['raw_data']['major_model_version']
|
||||
}
|
||||
if (v.progress === 0 || v.progress === 102) {
|
||||
if (v.status === 'pending' || v.status === 'in_progress' || v.status === 'downloading') {
|
||||
needPull = true
|
||||
}
|
||||
firstPageItems.push(v)
|
||||
|
||||
Reference in New Issue
Block a user