Compare commits

..

No commits in common. "aceca1e49dffc05f18feff626ea08b4ca4ae25f8" and "01e6c63bc8830235643ffa86c7f235f7e0009111" have entirely different histories.

7 changed files with 3 additions and 3 deletions

2
.gitignore vendored
View File

@ -26,7 +26,7 @@ test/
# 忽略所有 文件夹
**/frontend/public/files/
**/frontend/public/files
**/jfile/files/
**/output/
**/__pycache__/

Binary file not shown.

After

Width:  |  Height:  |  Size: 136 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 369 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.2 KiB

View File

@ -284,7 +284,7 @@ export const downloadImageToLocal = async (
): Promise<{ success: boolean; local_path?: string; error?: string }> => {
try {
const response = await axios.post(
`/jingrow.utils.fs.download_image_to_local`,
`/jingrow/jingrow.utils.fs.download_image_to_local`,
{
image_url: imageUrl,
filename: filename

View File

@ -62,7 +62,7 @@ def create_app():
include_routers_from_package(app, "jingrow.api")
# 手动注册动态路由(最后注册,避免冲突)
app.include_router(router)
app.include_router(router, prefix="/jingrow")
return app