From e01955ee1f2061d99faced86eaec926b7e67a735 Mon Sep 17 00:00:00 2001
From: Administrator <15274802129@163.com>
Date: Wed, 25 Feb 2026 16:47:09 +0800
Subject: [PATCH] fix(ai): 修复产品点模块中文件显示名称错误问题
---
src/main/resources/templates/febs/views/modules/ai/fileUpload/index.html | 9 ++++++---
1 files changed, 6 insertions(+), 3 deletions(-)
diff --git a/src/main/resources/templates/febs/views/modules/ai/fileUpload/index.html b/src/main/resources/templates/febs/views/modules/ai/fileUpload/index.html
index 366a18f..bdaca03 100644
--- a/src/main/resources/templates/febs/views/modules/ai/fileUpload/index.html
+++ b/src/main/resources/templates/febs/views/modules/ai/fileUpload/index.html
@@ -5,13 +5,14 @@
<form class="layui-form" action="" lay-filter="aiCompany-info-form">
<div class="layui-tab layui-tab-brief" lay-filter="docDemoTabBrief">
<ul class="layui-tab-title">
- <li class="layui-this">基础信息</li>
+ <li class="layui-this">知识点视频上传</li>
</ul>
<div class="layui-tab-content">
<div class="upload-container">
<div class="upload-header">
- <h2>大文件上传系统</h2>
+ <h2>知识点视频上传</h2>
<p>支持分片上传,最大支持10GB文件</p>
+ <p>产品知识点中的视频选择器中选择,小程序中可以通过学习模块中,观看视频</p>
</div>
<!-- 上传区域 -->
@@ -19,7 +20,7 @@
<i class="layui-icon layui-icon-upload-drag upload-icon"></i>
<div class="upload-text">
<p>点击或拖拽文件到此处上传</p>
- <small>支持视频文件上传</small>
+ <small>仅视频上传</small>
</div>
</div>
@@ -71,6 +72,7 @@
<table class="layui-table" id="fileList">
<thead>
<tr>
+ <th>系统文件名</th>
<th>文件名</th>
<th>大小</th>
<th>上传时间</th>
@@ -609,6 +611,7 @@
<input type="radio" name="fileRadio" value="${item.fileName}">
${item.fileName}
</td>
+ <td>${item.fileSysName}</td>
<td>${formatFileSize(item.fileSize)}</td>
<td>${item.uploadTime}</td>
<td>
--
Gitblit v1.9.1