Browse Source

优化用人方小程序人才详情页:重构工作视频卡片

- 工作视频卡片只显示最新三种视频类型:个税、工资、工作视频各一个
- 添加查看更多按钮,点击跳转到视频查看下载页
- 使用不同图标区分视频类型:个税(紫色发票)、工资(绿色钱币)、工作(蓝色视频)
- 显示具体上传日期,按时间倒序排列
- 保留查看和下载功能

🤖 Generated with [Claude Code](https://claude.ai/code)
via [Happy](https://happy.engineering)

Co-Authored-By: Claude <noreply@anthropic.com>
Co-Authored-By: Happy <yesreply@happy.engineering>
yourname 6 days ago
parent
commit
b3bf4c482c
1 changed files with 32 additions and 7 deletions
  1. 32 7
      yongren.html

+ 32 - 7
yongren.html

@@ -764,14 +764,20 @@
 
                             <!-- 视频功能 -->
                             <div class="card bg-white p-4 mb-4">
-                                <h3 class="font-semibold text-gray-700 mb-3">工作视频</h3>
+                                <div class="flex justify-between items-center mb-3">
+                                    <h3 class="font-semibold text-gray-700">工作视频</h3>
+                                    <a href="#video-page" class="text-blue-500 text-sm">
+                                        <i class="fas fa-chevron-right mr-1"></i>查看更多
+                                    </a>
+                                </div>
                                 <div class="space-y-3">
+                                    <!-- 个税视频 -->
                                     <div class="flex items-center justify-between p-3 bg-gray-50 rounded-lg">
                                         <div class="flex items-center">
-                                            <i class="fas fa-video text-blue-500 mr-3"></i>
+                                            <i class="fas fa-file-invoice-dollar text-purple-500 mr-3"></i>
                                             <div>
-                                                <p class="text-sm font-medium text-gray-800">工作环境视频</p>
-                                                <p class="text-xs text-gray-500">时长: 2分30秒</p>
+                                                <p class="text-sm font-medium text-gray-800">个税视频</p>
+                                                <p class="text-xs text-gray-500">2023-11-25 上传</p>
                                             </div>
                                         </div>
                                         <div class="flex space-x-2">
@@ -783,12 +789,31 @@
                                             </button>
                                         </div>
                                     </div>
+                                    <!-- 工资视频 -->
                                     <div class="flex items-center justify-between p-3 bg-gray-50 rounded-lg">
                                         <div class="flex items-center">
-                                            <i class="fas fa-video text-green-500 mr-3"></i>
+                                            <i class="fas fa-money-bill-wave text-green-500 mr-3"></i>
+                                            <div>
+                                                <p class="text-sm font-medium text-gray-800">工资视频</p>
+                                                <p class="text-xs text-gray-500">2023-11-24 上传</p>
+                                            </div>
+                                        </div>
+                                        <div class="flex space-x-2">
+                                            <button class="text-blue-500 text-sm">
+                                                <i class="fas fa-play mr-1"></i>查看
+                                            </button>
+                                            <button class="text-green-500 text-sm">
+                                                <i class="fas fa-download mr-1"></i>下载
+                                            </button>
+                                        </div>
+                                    </div>
+                                    <!-- 工作视频 -->
+                                    <div class="flex items-center justify-between p-3 bg-gray-50 rounded-lg">
+                                        <div class="flex items-center">
+                                            <i class="fas fa-video text-blue-500 mr-3"></i>
                                             <div>
-                                                <p class="text-sm font-medium text-gray-800">工作流程演示</p>
-                                                <p class="text-xs text-gray-500">时长: 1分45秒</p>
+                                                <p class="text-sm font-medium text-gray-800">工作视频</p>
+                                                <p class="text-xs text-gray-500">2023-11-23 上传</p>
                                             </div>
                                         </div>
                                         <div class="flex space-x-2">