提交bug修复 后台权限管理

This commit is contained in:
super
2026-04-11 22:25:14 +08:00
parent b400b494ad
commit 7589b4e418
36 changed files with 956 additions and 359 deletions

View File

@@ -1,4 +1,4 @@
import {
import {
del,
get,
http,
@@ -506,7 +506,7 @@ export function submitDeleteBrandResult(
);
}
/** 商品风险解决:备选店铺与匹配(推队列由前端 pywebview 完成) */
/** 商品风险处理:备选店铺与匹配相关数据结构。 */
export interface ProductRiskCandidateVo {
id: number;
shop_name: string;
@@ -921,7 +921,7 @@ export function getJavaDownloadUrl(path: string) {
path.startsWith("http://") || path.startsWith("https://")
? path
: `${JAVA_API_PREFIX}${path}`;
// 核心修复:pywebview 的 save_file_from_url_new 需要完整带 schema 的 URL
// pywebview 的 save_file_from_url_new 需要完整带 schema 的 URL
if (
!raw.startsWith("http://") &&
!raw.startsWith("https://") &&
@@ -934,3 +934,4 @@ export function getJavaDownloadUrl(path: string) {
}
export { JAVA_API_PREFIX, http };