feat(electron):优化商标筛查面板与资源加载逻辑

- 将多个 v-if 条件渲染改为 v-show,提升组件切换性能
- 优化商标任务完成状态判断逻辑,确保准确显示采集完成图标- 调整任务统计数据显示条件,支持零数据展示- 更新 API 配置地址,切换至本地开发环境地址
- 降低 Spring Boot 线程池与数据库连接池配置,适应小规模并发- 禁用 devtools 热部署与 Swagger 接口文档,优化生产环境性能
- 配置 RestTemplate 使用 HttpClient 连接池,增强 HTTP 请求稳定性
- 改进静态资源拷贝脚本,确保 icon 与 image 文件夹正确复制
- 更新 electron-builder 配置,优化资源打包路径与应用图标
- 修改 HTTP 路由规则,明确区分客户端与管理端接口路径- 注册文件协议拦截器,解决生产环境下 icon/image 资源加载问题
- 调整商标 API 接口路径,指向 erp_client_sb服务
-重构 MarkController 控制器,专注 Token 管理功能
- 优化线程池参数,适配低并发业务场景- 强化商标筛查流程控制,完善任务取消与异常处理机制
- 新增方舟精选任务管理接口,实现 Excel 下载与数据解析功能
This commit is contained in:
2025-11-06 14:39:58 +08:00
parent 2f00fde3be
commit 7c7009ffed
13 changed files with 255 additions and 114 deletions

View File

@@ -4,23 +4,25 @@ const FileSystem = require('fs-extra');
async function copyAssets() {
console.log('Copying static assets from public directory...');
const publicDir = Path.join(__dirname, '..', 'public');
const buildRendererDir = Path.join(__dirname, '..', 'build', 'renderer');
// 注释icon 和 image 资源已统一由 public 目录管理
// electron-builder 会直接从 public 打包这些资源到 app.asar.unpacked
// 不需要复制到 build/renderer避免重复打包导致体积增大
// 确保 build/renderer 下的 icon 和 image 目录存在且是最新的
// 这样打包后 renderer/icon 和 renderer/image 会包含所有图标
await FileSystem.copy(
Path.join(publicDir, 'icon'),
Path.join(buildRendererDir, 'icon'),
{ overwrite: true }
);
await FileSystem.copy(
Path.join(publicDir, 'image'),
Path.join(buildRendererDir, 'image'),
{ overwrite: true }
);
// const publicDir = Path.join(__dirname, '..', 'public');
// const buildRendererDir = Path.join(__dirname, '..', 'build', 'renderer');
console.log('Static assets copied to build/renderer successfully!');
// await FileSystem.copy(
// Path.join(publicDir, 'icon'),
// Path.join(buildRendererDir, 'icon'),
// { overwrite: true }
// );
// await FileSystem.copy(
// Path.join(publicDir, 'image'),
// Path.join(buildRendererDir, 'image'),
// { overwrite: true }
// );
console.log('Static assets copy skipped (resources managed by public directory).');
}
module.exports = copyAssets;