zhangjq
2026-02-10 889088ca295306992ff4f11c1ed116eeb826f200
修复批量创作页面接口地址,使用环境变量替代硬编码URL
1个文件已修改
5 ■■■■■ 已修改文件
src/views/contract/BatchCreate.vue 5 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/contract/BatchCreate.vue
@@ -361,8 +361,9 @@
      }
      
      // 5. 构建接口地址
      // 使用接口文档中指定的地址
      const url = 'http://192.168.31.137:3100/jeecgboot/api/excel/batchGenerateCopy';
      // 使用环境变量获取基础URL,适配所有环境
      const domainUrl = import.meta.env.VITE_GLOB_DOMAIN_URL || 'http://localhost:8080/jeecg-boot';
      const url = `${domainUrl}/api/excel/batchGenerateCopy`;
      
      console.log('批量生成请求 URL:', url);