修复:
- quark-share.ts/storage.ts: 9处template literal ${}缺失导致fetch URL写死
- user/routes.ts: testCloudConnectionWithCookie缺await + 按cloudType分发驱动
- credential.service.ts: INSERT缺?参数 (9values/10cols)
- user/routes.ts: 用户新增网盘默认is_active=0
- admin.routes.ts: 新增PUT /admin/cloud-configs/:id/primary路由
- database.ts: is_primary列迁移
- UserDashboard.vue: 保存时传递storage_used/storage_total
- SystemConfig.vue: promoForm const重赋值bug
- config/index.ts: 移除泄露的默认密钥token
24 lines
928 B
HTML
24 lines
928 B
HTML
<!DOCTYPE html>
|
|
<html lang="zh-CN">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
|
|
<meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate" />
|
|
<meta http-equiv="Pragma" content="no-cache" />
|
|
<meta http-equiv="Expires" content="0" />
|
|
<title>CloudSearch - 网盘资源搜索</title>
|
|
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
|
|
<script>
|
|
(function() {
|
|
fetch('/api/site-config').then(function(r){return r.json()}).then(function(cfg){
|
|
if(cfg.site_name) document.title = cfg.site_name + ' - 网盘资源搜索';
|
|
}).catch(function(){});
|
|
})();
|
|
</script>
|
|
<script type="module" crossorigin src="/assets/index-DG5Z6wYC.js"></script>
|
|
<link rel="stylesheet" crossorigin href="/assets/index-CAy_4E9W.css">
|
|
</head>
|
|
<body>
|
|
<div id="app"></div>
|
|
</body>
|
|
</html> |