This commit is contained in:
zt
2025-04-29 17:45:42 +08:00
parent 2c15d26bcc
commit c982cbaa75
32 changed files with 936 additions and 370 deletions

View File

@ -197,6 +197,23 @@
>
确认上传
</el-button>
<div style="background-color: #f5f7fa; border-radius: 4px">
<h4 style="margin: 0 0 10px 0; color: #409eff">操作流程:</h4>
<ol style="margin: 0; padding-left: 20px">
<li>选择主题</li>
<li>勾选需要上传文件的人员</li>
<li>点击"下载模板"按钮</li>
<li>解压下载的模板文件</li>
<li>将图片或PDF文件放入相应人员的文件夹中</li>
<li>压缩文件夹并上传</li>
</ol>
<h4 style="margin: 15px 0 10px 0; color: #f56c6c">注意事项:</h4>
<ul style="margin: 0; padding-left: 20px">
<li>请确保压缩文件为.zip格式</li>
<li>压缩层级不要过深,建议直接压缩人员文件夹</li>
<li>每个人员的文件请放入对应的文件夹中</li>
</ul>
</div>
</div>
</div>
<!-- 查看详情弹窗 -->
@ -260,8 +277,8 @@
mounted() {
const protocol = window.location.protocol;
const host = window.location.host;
this.baseUrl = `${protocol}//${host}`; // 动态获取基础 URL
// 获取 URL 中的 userId 参数
// this.baseUrl = `${protocol}//${host}/lhyg`; // 动态获取基础 URL
// 获取 URL 中的 userId 参数
const urlParams = new URLSearchParams(window.location.search);
this.userId = urlParams.get("userId");
console.log("userId", this.userId);