|
|
@@ -0,0 +1,1100 @@
|
|
|
+<!DOCTYPE html>
|
|
|
+<html lang="zh-CN">
|
|
|
+<head>
|
|
|
+ <meta charset="UTF-8">
|
|
|
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
|
+ <title>用人方小程序 - 完整原型</title>
|
|
|
+ <script src="https://cdn.tailwindcss.com"></script>
|
|
|
+ <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
|
|
|
+ <style>
|
|
|
+ .mobile-frame {
|
|
|
+ width: 375px;
|
|
|
+ height: 667px;
|
|
|
+ border-radius: 40px;
|
|
|
+ box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
|
|
|
+ overflow: hidden;
|
|
|
+ position: relative;
|
|
|
+ background-color: white;
|
|
|
+ }
|
|
|
+ .status-bar {
|
|
|
+ height: 44px;
|
|
|
+ background: rgba(255, 255, 255, 0.9);
|
|
|
+ display: flex;
|
|
|
+ align-items: center;
|
|
|
+ justify-content: space-between;
|
|
|
+ padding: 0 20px;
|
|
|
+ font-size: 14px;
|
|
|
+ border-bottom: 1px solid #f0f0f0;
|
|
|
+ }
|
|
|
+ .tab-bar {
|
|
|
+ height: 60px;
|
|
|
+ background: white;
|
|
|
+ display: flex;
|
|
|
+ align-items: center;
|
|
|
+ justify-content: space-around;
|
|
|
+ border-top: 1px solid #f0f0f0;
|
|
|
+ }
|
|
|
+ .tab-item {
|
|
|
+ display: flex;
|
|
|
+ flex-direction: column;
|
|
|
+ align-items: center;
|
|
|
+ justify-content: center;
|
|
|
+ font-size: 12px;
|
|
|
+ color: #999;
|
|
|
+ cursor: pointer;
|
|
|
+ }
|
|
|
+ .tab-item.active {
|
|
|
+ color: #3b82f6;
|
|
|
+ }
|
|
|
+ .card {
|
|
|
+ border-radius: 12px;
|
|
|
+ box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
|
|
|
+ overflow: hidden;
|
|
|
+ }
|
|
|
+ .gradient-bg {
|
|
|
+ background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
|
|
|
+ }
|
|
|
+ .person-card {
|
|
|
+ transition: all 0.3s ease;
|
|
|
+ }
|
|
|
+ .person-card:hover {
|
|
|
+ transform: translateY(-2px);
|
|
|
+ box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
|
|
|
+ }
|
|
|
+ .avatar {
|
|
|
+ width: 60px;
|
|
|
+ height: 60px;
|
|
|
+ border-radius: 50%;
|
|
|
+ object-fit: cover;
|
|
|
+ }
|
|
|
+ .progress-bar {
|
|
|
+ height: 6px;
|
|
|
+ border-radius: 3px;
|
|
|
+ background-color: #e5e7eb;
|
|
|
+ overflow: hidden;
|
|
|
+ }
|
|
|
+ .progress-fill {
|
|
|
+ height: 100%;
|
|
|
+ border-radius: 3px;
|
|
|
+ background-color: #10b981;
|
|
|
+ }
|
|
|
+ .stat-card {
|
|
|
+ background: white;
|
|
|
+ border-radius: 12px;
|
|
|
+ padding: 16px;
|
|
|
+ box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
|
|
|
+ }
|
|
|
+ .pulse-dot {
|
|
|
+ width: 10px;
|
|
|
+ height: 10px;
|
|
|
+ border-radius: 50%;
|
|
|
+ background-color: #10b981;
|
|
|
+ animation: pulse 2s infinite;
|
|
|
+ }
|
|
|
+ .page {
|
|
|
+ display: none;
|
|
|
+ height: calc(100% - 104px);
|
|
|
+ overflow-y: auto;
|
|
|
+ }
|
|
|
+ .page.active {
|
|
|
+ display: block;
|
|
|
+ }
|
|
|
+ .chart-container {
|
|
|
+ height: 200px;
|
|
|
+ position: relative;
|
|
|
+ }
|
|
|
+ .chart-bar {
|
|
|
+ position: absolute;
|
|
|
+ bottom: 0;
|
|
|
+ width: 30px;
|
|
|
+ background-color: #3b82f6;
|
|
|
+ border-radius: 4px 4px 0 0;
|
|
|
+ }
|
|
|
+ @keyframes pulse {
|
|
|
+ 0% {
|
|
|
+ transform: scale(0.95);
|
|
|
+ box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
|
|
|
+ }
|
|
|
+ 70% {
|
|
|
+ transform: scale(1);
|
|
|
+ box-shadow: 0 0 0 10px rgba(16, 185, 129, 0);
|
|
|
+ }
|
|
|
+ 100% {
|
|
|
+ transform: scale(0.95);
|
|
|
+ box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
|
|
|
+ }
|
|
|
+ }
|
|
|
+ </style>
|
|
|
+</head>
|
|
|
+<body class="bg-gray-100 min-h-screen p-6">
|
|
|
+ <div class="max-w-6xl mx-auto">
|
|
|
+ <h1 class="text-3xl font-bold text-center text-gray-800 mb-2">用人方小程序 - 完整原型设计</h1>
|
|
|
+ <p class="text-center text-gray-600 mb-8">基于数据库结构的完整页面原型展示</p>
|
|
|
+
|
|
|
+ <div class="flex flex-wrap justify-center gap-8">
|
|
|
+ <!-- 页面1: 登录页 -->
|
|
|
+ <div class="flex flex-col items-center">
|
|
|
+ <h2 class="text-xl font-semibold text-gray-700 mb-4">登录页</h2>
|
|
|
+ <div class="mobile-frame">
|
|
|
+ <div class="status-bar">
|
|
|
+ <span>9:41</span>
|
|
|
+ <div class="flex space-x-1">
|
|
|
+ <i class="fas fa-signal"></i>
|
|
|
+ <i class="fas fa-wifi"></i>
|
|
|
+ <i class="fas fa-battery-three-quarters"></i>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+
|
|
|
+ <div class="h-[calc(100%-44px)] flex flex-col justify-center p-8">
|
|
|
+ <div class="text-center mb-10">
|
|
|
+ <h1 class="text-2xl font-bold text-gray-800 mb-2">残疾人就业平台</h1>
|
|
|
+ <p class="text-gray-600">为人力资源公司提供专业服务</p>
|
|
|
+ </div>
|
|
|
+
|
|
|
+ <div class="mb-6">
|
|
|
+ <div class="flex items-center border border-gray-300 rounded-lg px-4 py-3 mb-4">
|
|
|
+ <i class="fas fa-phone text-gray-400 mr-3"></i>
|
|
|
+ <input type="tel" placeholder="请输入手机号" class="w-full outline-none">
|
|
|
+ </div>
|
|
|
+ <div class="flex items-center border border-gray-300 rounded-lg px-4 py-3">
|
|
|
+ <i class="fas fa-lock text-gray-400 mr-3"></i>
|
|
|
+ <input type="password" placeholder="请输入密码" class="w-full outline-none">
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+
|
|
|
+ <button class="gradient-bg text-white w-full py-3 rounded-lg font-medium mb-4">登录</button>
|
|
|
+
|
|
|
+ <div class="text-center">
|
|
|
+ <a href="#" class="text-sm text-blue-500">忘记密码?</a>
|
|
|
+ </div>
|
|
|
+
|
|
|
+ <div class="mt-12 text-center text-gray-500 text-sm">
|
|
|
+ <p>登录即表示同意<span class="text-blue-500">《用户协议》</span>和<span class="text-blue-500">《隐私政策》</span></p>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+
|
|
|
+ <!-- 页面2: 首页 -->
|
|
|
+ <div class="flex flex-col items-center">
|
|
|
+ <h2 class="text-xl font-semibold text-gray-700 mb-4">首页/看板</h2>
|
|
|
+ <div class="mobile-frame">
|
|
|
+ <div class="status-bar">
|
|
|
+ <span>9:41</span>
|
|
|
+ <div class="flex space-x-1">
|
|
|
+ <i class="fas fa-signal"></i>
|
|
|
+ <i class="fas fa-wifi"></i>
|
|
|
+ <i class="fas fa-battery-three-quarters"></i>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+
|
|
|
+ <div class="h-[calc(100%-104px)] overflow-y-auto p-4">
|
|
|
+ <!-- 顶部信息栏 -->
|
|
|
+ <div class="gradient-bg text-white rounded-2xl p-5 mb-4">
|
|
|
+ <div class="flex justify-between items-center">
|
|
|
+ <div>
|
|
|
+ <p class="text-sm opacity-80">欢迎回来</p>
|
|
|
+ <h2 class="text-xl font-bold">阿里巴巴集团</h2>
|
|
|
+ </div>
|
|
|
+ <div class="w-12 h-12 rounded-full bg-white/20 flex items-center justify-center">
|
|
|
+ <i class="fas fa-building text-white text-xl"></i>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div class="mt-4 flex justify-between">
|
|
|
+ <div class="text-center">
|
|
|
+ <p class="text-2xl font-bold">24</p>
|
|
|
+ <p class="text-xs opacity-80">在职人员</p>
|
|
|
+ </div>
|
|
|
+ <div class="text-center">
|
|
|
+ <p class="text-2xl font-bold">5</p>
|
|
|
+ <p class="text-xs opacity-80">待入职</p>
|
|
|
+ </div>
|
|
|
+ <div class="text-center">
|
|
|
+ <p class="text-2xl font-bold">3</p>
|
|
|
+ <p class="text-xs opacity-80">本月新增</p>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+
|
|
|
+ <!-- 快速操作 -->
|
|
|
+ <div class="grid grid-cols-4 gap-3 mb-4">
|
|
|
+ <div class="bg-blue-50 rounded-xl p-3 text-center">
|
|
|
+ <i class="fas fa-user-friends text-blue-500 text-lg mb-1"></i>
|
|
|
+ <p class="text-xs text-gray-700">人才库</p>
|
|
|
+ </div>
|
|
|
+ <div class="bg-green-50 rounded-xl p-3 text-center">
|
|
|
+ <i class="fas fa-chart-pie text-green-500 text-lg mb-1"></i>
|
|
|
+ <p class="text-xs text-gray-700">数据统计</p>
|
|
|
+ </div>
|
|
|
+ <div class="bg-purple-50 rounded-xl p-3 text-center">
|
|
|
+ <i class="fas fa-file-alt text-purple-500 text-lg mb-1"></i>
|
|
|
+ <p class="text-xs text-gray-700">订单管理</p>
|
|
|
+ </div>
|
|
|
+ <div class="bg-yellow-50 rounded-xl p-3 text-center">
|
|
|
+ <i class="fas fa-cog text-yellow-500 text-lg mb-1"></i>
|
|
|
+ <p class="text-xs text-gray-700">设置</p>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+
|
|
|
+ <!-- 人才列表 -->
|
|
|
+ <div class="mb-4">
|
|
|
+ <div class="flex justify-between items-center mb-3">
|
|
|
+ <h3 class="font-semibold text-gray-700">分配人才</h3>
|
|
|
+ <a href="#" class="text-xs text-blue-500">查看全部</a>
|
|
|
+ </div>
|
|
|
+
|
|
|
+ <div class="space-y-3">
|
|
|
+ <!-- 人才卡片1 -->
|
|
|
+ <div class="person-card card bg-white p-4 flex items-center">
|
|
|
+ <img src="https://images.unsplash.com/photo-1507003211169-0a1dd7228f2d?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=100&q=80"
|
|
|
+ class="avatar mr-3" alt="人才头像">
|
|
|
+ <div class="flex-1">
|
|
|
+ <div class="flex justify-between items-start">
|
|
|
+ <div>
|
|
|
+ <h4 class="font-semibold text-gray-800">张明</h4>
|
|
|
+ <p class="text-xs text-gray-500">肢体残疾 · 三级</p>
|
|
|
+ </div>
|
|
|
+ <span class="bg-green-100 text-green-800 text-xs px-2 py-1 rounded-full">在职</span>
|
|
|
+ </div>
|
|
|
+ <div class="mt-2">
|
|
|
+ <div class="flex justify-between text-xs text-gray-500 mb-1">
|
|
|
+ <span>入职时间: 2023-08-15</span>
|
|
|
+ <span>薪资: ¥4,800</span>
|
|
|
+ </div>
|
|
|
+ <div class="progress-bar">
|
|
|
+ <div class="progress-fill" style="width: 85%"></div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+
|
|
|
+ <!-- 人才卡片2 -->
|
|
|
+ <div class="person-card card bg-white p-4 flex items-center">
|
|
|
+ <img src="https://images.unsplash.com/photo-1494790108755-2616b612b786?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=100&q=80"
|
|
|
+ class="avatar mr-3" alt="人才头像">
|
|
|
+ <div class="flex-1">
|
|
|
+ <div class="flex justify-between items-start">
|
|
|
+ <div>
|
|
|
+ <h4 class="font-semibold text-gray-800">李小红</h4>
|
|
|
+ <p class="text-xs text-gray-500">听力残疾 · 二级</p>
|
|
|
+ </div>
|
|
|
+ <span class="bg-yellow-100 text-yellow-800 text-xs px-2 py-1 rounded-full">待入职</span>
|
|
|
+ </div>
|
|
|
+ <div class="mt-2">
|
|
|
+ <div class="flex justify-between text-xs text-gray-500 mb-1">
|
|
|
+ <span>预计入职: 2023-12-01</span>
|
|
|
+ <span>薪资: ¥4,200</span>
|
|
|
+ </div>
|
|
|
+ <div class="progress-bar">
|
|
|
+ <div class="progress-fill" style="width: 60%"></div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+
|
|
|
+ <!-- 数据统计 -->
|
|
|
+ <div class="mb-4">
|
|
|
+ <h3 class="font-semibold text-gray-700 mb-3">数据统计</h3>
|
|
|
+ <div class="grid grid-cols-2 gap-3">
|
|
|
+ <div class="stat-card">
|
|
|
+ <div class="flex items-center mb-2">
|
|
|
+ <div class="pulse-dot mr-2"></div>
|
|
|
+ <p class="text-sm text-gray-600">在职率</p>
|
|
|
+ </div>
|
|
|
+ <p class="text-2xl font-bold text-gray-800">92%</p>
|
|
|
+ </div>
|
|
|
+ <div class="stat-card">
|
|
|
+ <p class="text-sm text-gray-600 mb-2">平均薪资</p>
|
|
|
+ <p class="text-2xl font-bold text-gray-800">¥4,650</p>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+
|
|
|
+ <!-- 底部导航 -->
|
|
|
+ <div class="tab-bar">
|
|
|
+ <div class="tab-item active">
|
|
|
+ <i class="fas fa-home text-lg mb-1"></i>
|
|
|
+ <span>首页</span>
|
|
|
+ </div>
|
|
|
+ <div class="tab-item">
|
|
|
+ <i class="fas fa-user-friends text-lg mb-1"></i>
|
|
|
+ <span>人才</span>
|
|
|
+ </div>
|
|
|
+ <div class="tab-item">
|
|
|
+ <i class="fas fa-chart-bar text-lg mb-1"></i>
|
|
|
+ <span>数据</span>
|
|
|
+ </div>
|
|
|
+ <div class="tab-item">
|
|
|
+ <i class="fas fa-user text-lg mb-1"></i>
|
|
|
+ <span>我的</span>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+
|
|
|
+ <!-- 页面3: 人才列表页 -->
|
|
|
+ <div class="flex flex-col items-center">
|
|
|
+ <h2 class="text-xl font-semibold text-gray-700 mb-4">人才列表页</h2>
|
|
|
+ <div class="mobile-frame">
|
|
|
+ <div class="status-bar">
|
|
|
+ <span>9:41</span>
|
|
|
+ <div class="flex space-x-1">
|
|
|
+ <i class="fas fa-signal"></i>
|
|
|
+ <i class="fas fa-wifi"></i>
|
|
|
+ <i class="fas fa-battery-three-quarters"></i>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+
|
|
|
+ <div class="h-[calc(100%-104px)] overflow-y-auto">
|
|
|
+ <!-- 搜索和筛选 -->
|
|
|
+ <div class="p-4 border-b border-gray-200">
|
|
|
+ <div class="flex items-center bg-gray-100 rounded-lg px-4 py-2 mb-3">
|
|
|
+ <i class="fas fa-search text-gray-400 mr-2"></i>
|
|
|
+ <input type="text" placeholder="搜索姓名、残疾证号..." class="w-full bg-transparent outline-none">
|
|
|
+ </div>
|
|
|
+ <div class="flex space-x-2 overflow-x-auto pb-2">
|
|
|
+ <span class="bg-blue-100 text-blue-800 text-xs px-3 py-1 rounded-full whitespace-nowrap">全部</span>
|
|
|
+ <span class="bg-gray-100 text-gray-800 text-xs px-3 py-1 rounded-full whitespace-nowrap">在职</span>
|
|
|
+ <span class="bg-gray-100 text-gray-800 text-xs px-3 py-1 rounded-full whitespace-nowrap">待入职</span>
|
|
|
+ <span class="bg-gray-100 text-gray-800 text-xs px-3 py-1 rounded-full whitespace-nowrap">离职</span>
|
|
|
+ <span class="bg-gray-100 text-gray-800 text-xs px-3 py-1 rounded-full whitespace-nowrap">肢体残疾</span>
|
|
|
+ <span class="bg-gray-100 text-gray-800 text-xs px-3 py-1 rounded-full whitespace-nowrap">听力残疾</span>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+
|
|
|
+ <!-- 人才列表 -->
|
|
|
+ <div class="p-4">
|
|
|
+ <div class="flex justify-between items-center mb-4">
|
|
|
+ <h3 class="font-semibold text-gray-700">全部人才 (32)</h3>
|
|
|
+ <div class="flex space-x-2">
|
|
|
+ <button class="text-gray-500">
|
|
|
+ <i class="fas fa-sort"></i>
|
|
|
+ </button>
|
|
|
+ <button class="text-gray-500">
|
|
|
+ <i class="fas fa-filter"></i>
|
|
|
+ </button>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+
|
|
|
+ <div class="space-y-3">
|
|
|
+ <!-- 人才卡片1 -->
|
|
|
+ <div class="person-card card bg-white p-4 flex items-center">
|
|
|
+ <img src="https://images.unsplash.com/photo-1507003211169-0a1dd7228f2d?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=100&q=80"
|
|
|
+ class="avatar mr-3" alt="人才头像">
|
|
|
+ <div class="flex-1">
|
|
|
+ <div class="flex justify-between items-start">
|
|
|
+ <div>
|
|
|
+ <h4 class="font-semibold text-gray-800">张明</h4>
|
|
|
+ <p class="text-xs text-gray-500">肢体残疾 · 三级 · 男 · 28岁</p>
|
|
|
+ </div>
|
|
|
+ <span class="bg-green-100 text-green-800 text-xs px-2 py-1 rounded-full">在职</span>
|
|
|
+ </div>
|
|
|
+ <div class="mt-2 flex justify-between text-xs text-gray-500">
|
|
|
+ <span>入职: 2023-08-15</span>
|
|
|
+ <span>薪资: ¥4,800</span>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+
|
|
|
+ <!-- 人才卡片2 -->
|
|
|
+ <div class="person-card card bg-white p-4 flex items-center">
|
|
|
+ <img src="https://images.unsplash.com/photo-1494790108755-2616b612b786?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=100&q=80"
|
|
|
+ class="avatar mr-3" alt="人才头像">
|
|
|
+ <div class="flex-1">
|
|
|
+ <div class="flex justify-between items-start">
|
|
|
+ <div>
|
|
|
+ <h4 class="font-semibold text-gray-800">李小红</h4>
|
|
|
+ <p class="text-xs text-gray-500">听力残疾 · 二级 · 女 · 25岁</p>
|
|
|
+ </div>
|
|
|
+ <span class="bg-yellow-100 text-yellow-800 text-xs px-2 py-1 rounded-full">待入职</span>
|
|
|
+ </div>
|
|
|
+ <div class="mt-2 flex justify-between text-xs text-gray-500">
|
|
|
+ <span>预计入职: 2023-12-01</span>
|
|
|
+ <span>薪资: ¥4,200</span>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+
|
|
|
+ <!-- 人才卡片3 -->
|
|
|
+ <div class="person-card card bg-white p-4 flex items-center">
|
|
|
+ <img src="https://images.unsplash.com/photo-1500648767791-00dcc994a43e?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=100&q=80"
|
|
|
+ class="avatar mr-3" alt="人才头像">
|
|
|
+ <div class="flex-1">
|
|
|
+ <div class="flex justify-between items-start">
|
|
|
+ <div>
|
|
|
+ <h4 class="font-semibold text-gray-800">王强</h4>
|
|
|
+ <p class="text-xs text-gray-500">视力残疾 · 一级 · 男 · 32岁</p>
|
|
|
+ </div>
|
|
|
+ <span class="bg-green-100 text-green-800 text-xs px-2 py-1 rounded-full">在职</span>
|
|
|
+ </div>
|
|
|
+ <div class="mt-2 flex justify-between text-xs text-gray-500">
|
|
|
+ <span>入职: 2023-05-10</span>
|
|
|
+ <span>薪资: ¥5,200</span>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+
|
|
|
+ <!-- 人才卡片4 -->
|
|
|
+ <div class="person-card card bg-white p-4 flex items-center">
|
|
|
+ <img src="https://images.unsplash.com/photo-1438761681033-6461ffad8d80?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=100&q=80"
|
|
|
+ class="avatar mr-3" alt="人才头像">
|
|
|
+ <div class="flex-1">
|
|
|
+ <div class="flex justify-between items-start">
|
|
|
+ <div>
|
|
|
+ <h4 class="font-semibold text-gray-800">赵琳</h4>
|
|
|
+ <p class="text-xs text-gray-500">言语残疾 · 二级 · 女 · 29岁</p>
|
|
|
+ </div>
|
|
|
+ <span class="bg-red-100 text-red-800 text-xs px-2 py-1 rounded-full">离职</span>
|
|
|
+ </div>
|
|
|
+ <div class="mt-2 flex justify-between text-xs text-gray-500">
|
|
|
+ <span>离职: 2023-10-20</span>
|
|
|
+ <span>薪资: ¥4,500</span>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+
|
|
|
+ <!-- 底部导航 -->
|
|
|
+ <div class="tab-bar">
|
|
|
+ <div class="tab-item">
|
|
|
+ <i class="fas fa-home text-lg mb-1"></i>
|
|
|
+ <span>首页</span>
|
|
|
+ </div>
|
|
|
+ <div class="tab-item active">
|
|
|
+ <i class="fas fa-user-friends text-lg mb-1"></i>
|
|
|
+ <span>人才</span>
|
|
|
+ </div>
|
|
|
+ <div class="tab-item">
|
|
|
+ <i class="fas fa-chart-bar text-lg mb-1"></i>
|
|
|
+ <span>数据</span>
|
|
|
+ </div>
|
|
|
+ <div class="tab-item">
|
|
|
+ <i class="fas fa-user text-lg mb-1"></i>
|
|
|
+ <span>我的</span>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+
|
|
|
+ <!-- 页面4: 人才详情页 -->
|
|
|
+ <div class="flex flex-col items-center">
|
|
|
+ <h2 class="text-xl font-semibold text-gray-700 mb-4">人才详情页</h2>
|
|
|
+ <div class="mobile-frame">
|
|
|
+ <div class="status-bar">
|
|
|
+ <span>9:41</span>
|
|
|
+ <div class="flex space-x-1">
|
|
|
+ <i class="fas fa-signal"></i>
|
|
|
+ <i class="fas fa-wifi"></i>
|
|
|
+ <i class="fas fa-battery-three-quarters"></i>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+
|
|
|
+ <div class="h-[calc(100%-104px)] overflow-y-auto">
|
|
|
+ <!-- 顶部信息 -->
|
|
|
+ <div class="gradient-bg text-white p-5">
|
|
|
+ <div class="flex justify-between items-start">
|
|
|
+ <div class="flex items-center">
|
|
|
+ <img src="https://images.unsplash.com/photo-1507003211169-0a1dd7228f2d?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=100&q=80"
|
|
|
+ class="w-16 h-16 rounded-full border-2 border-white mr-4" alt="个人头像">
|
|
|
+ <div>
|
|
|
+ <h2 class="text-xl font-bold">张明</h2>
|
|
|
+ <p class="text-sm opacity-80">肢体残疾 · 三级 · 在职</p>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div class="bg-white/20 rounded-full p-2">
|
|
|
+ <i class="fas fa-ellipsis-v text-white"></i>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div class="mt-4 flex justify-between">
|
|
|
+ <div class="text-center">
|
|
|
+ <p class="text-2xl font-bold">¥4,800</p>
|
|
|
+ <p class="text-xs opacity-80">当前薪资</p>
|
|
|
+ </div>
|
|
|
+ <div class="text-center">
|
|
|
+ <p class="text-2xl font-bold">156</p>
|
|
|
+ <p class="text-xs opacity-80">在职天数</p>
|
|
|
+ </div>
|
|
|
+ <div class="text-center">
|
|
|
+ <p class="text-2xl font-bold">98%</p>
|
|
|
+ <p class="text-xs opacity-80">出勤率</p>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+
|
|
|
+ <!-- 详细信息 -->
|
|
|
+ <div class="p-4">
|
|
|
+ <!-- 基本信息 -->
|
|
|
+ <div class="card bg-white p-4 mb-4">
|
|
|
+ <h3 class="font-semibold text-gray-700 mb-3">基本信息</h3>
|
|
|
+ <div class="grid grid-cols-2 gap-3 text-sm">
|
|
|
+ <div>
|
|
|
+ <p class="text-gray-500">性别</p>
|
|
|
+ <p class="text-gray-800">男</p>
|
|
|
+ </div>
|
|
|
+ <div>
|
|
|
+ <p class="text-gray-500">年龄</p>
|
|
|
+ <p class="text-gray-800">28岁</p>
|
|
|
+ </div>
|
|
|
+ <div>
|
|
|
+ <p class="text-gray-500">身份证号</p>
|
|
|
+ <p class="text-gray-800">440301********1234</p>
|
|
|
+ </div>
|
|
|
+ <div>
|
|
|
+ <p class="text-gray-500">残疾证号</p>
|
|
|
+ <p class="text-gray-800">CJZ202300123</p>
|
|
|
+ </div>
|
|
|
+ <div class="col-span-2">
|
|
|
+ <p class="text-gray-500">联系地址</p>
|
|
|
+ <p class="text-gray-800">广东省深圳市南山区科技园</p>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+
|
|
|
+ <!-- 工作信息 -->
|
|
|
+ <div class="card bg-white p-4 mb-4">
|
|
|
+ <h3 class="font-semibold text-gray-700 mb-3">工作信息</h3>
|
|
|
+ <div class="space-y-3 text-sm">
|
|
|
+ <div class="flex justify-between">
|
|
|
+ <p class="text-gray-500">入职日期</p>
|
|
|
+ <p class="text-gray-800">2023-08-15</p>
|
|
|
+ </div>
|
|
|
+ <div class="flex justify-between">
|
|
|
+ <p class="text-gray-500">工作状态</p>
|
|
|
+ <span class="bg-green-100 text-green-800 text-xs px-2 py-1 rounded-full">在职</span>
|
|
|
+ </div>
|
|
|
+ <div class="flex justify-between">
|
|
|
+ <p class="text-gray-500">所属订单</p>
|
|
|
+ <p class="text-gray-800">阿里巴巴2023-08</p>
|
|
|
+ </div>
|
|
|
+ <div class="flex justify-between">
|
|
|
+ <p class="text-gray-500">岗位类型</p>
|
|
|
+ <p class="text-gray-800">数据标注员</p>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+
|
|
|
+ <!-- 薪资信息 -->
|
|
|
+ <div class="card bg-white p-4 mb-4">
|
|
|
+ <h3 class="font-semibold text-gray-700 mb-3">薪资信息</h3>
|
|
|
+ <div class="space-y-3 text-sm">
|
|
|
+ <div class="flex justify-between">
|
|
|
+ <p class="text-gray-500">基本工资</p>
|
|
|
+ <p class="text-gray-800">¥3,500</p>
|
|
|
+ </div>
|
|
|
+ <div class="flex justify-between">
|
|
|
+ <p class="text-gray-500">岗位津贴</p>
|
|
|
+ <p class="text-gray-800">¥800</p>
|
|
|
+ </div>
|
|
|
+ <div class="flex justify-between">
|
|
|
+ <p class="text-gray-500">绩效奖金</p>
|
|
|
+ <p class="text-gray-800">¥500</p>
|
|
|
+ </div>
|
|
|
+ <div class="flex justify-between border-t border-gray-200 pt-2">
|
|
|
+ <p class="text-gray-700 font-medium">总计</p>
|
|
|
+ <p class="text-gray-800 font-bold">¥4,800</p>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+
|
|
|
+ <!-- 操作按钮 -->
|
|
|
+ <div class="flex space-x-3">
|
|
|
+ <button class="flex-1 bg-blue-500 text-white py-3 rounded-lg font-medium">
|
|
|
+ <i class="fas fa-phone mr-2"></i>联系
|
|
|
+ </button>
|
|
|
+ <button class="flex-1 bg-gray-100 text-gray-800 py-3 rounded-lg font-medium">
|
|
|
+ <i class="fas fa-edit mr-2"></i>编辑
|
|
|
+ </button>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+
|
|
|
+ <!-- 底部导航 -->
|
|
|
+ <div class="tab-bar">
|
|
|
+ <div class="tab-item">
|
|
|
+ <i class="fas fa-home text-lg mb-1"></i>
|
|
|
+ <span>首页</span>
|
|
|
+ </div>
|
|
|
+ <div class="tab-item active">
|
|
|
+ <i class="fas fa-user-friends text-lg mb-1"></i>
|
|
|
+ <span>人才</span>
|
|
|
+ </div>
|
|
|
+ <div class="tab-item">
|
|
|
+ <i class="fas fa-chart-bar text-lg mb-1"></i>
|
|
|
+ <span>数据</span>
|
|
|
+ </div>
|
|
|
+ <div class="tab-item">
|
|
|
+ <i class="fas fa-user text-lg mb-1"></i>
|
|
|
+ <span>我的</span>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+
|
|
|
+ <!-- 页面5: 数据统计页 -->
|
|
|
+ <div class="flex flex-col items-center">
|
|
|
+ <h2 class="text-xl font-semibold text-gray-700 mb-4">数据统计页</h2>
|
|
|
+ <div class="mobile-frame">
|
|
|
+ <div class="status-bar">
|
|
|
+ <span>9:41</span>
|
|
|
+ <div class="flex space-x-1">
|
|
|
+ <i class="fas fa-signal"></i>
|
|
|
+ <i class="fas fa-wifi"></i>
|
|
|
+ <i class="fas fa-battery-three-quarters"></i>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+
|
|
|
+ <div class="h-[calc(100%-104px)] overflow-y-auto p-4">
|
|
|
+ <!-- 时间筛选 -->
|
|
|
+ <div class="flex justify-between items-center mb-4">
|
|
|
+ <h3 class="font-semibold text-gray-700">数据统计</h3>
|
|
|
+ <div class="flex items-center bg-gray-100 rounded-lg px-3 py-1">
|
|
|
+ <span class="text-sm text-gray-700 mr-2">2023年11月</span>
|
|
|
+ <i class="fas fa-chevron-down text-gray-500"></i>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+
|
|
|
+ <!-- 统计卡片 -->
|
|
|
+ <div class="grid grid-cols-2 gap-3 mb-4">
|
|
|
+ <div class="stat-card">
|
|
|
+ <p class="text-sm text-gray-600 mb-2">在职人数</p>
|
|
|
+ <p class="text-2xl font-bold text-gray-800">24</p>
|
|
|
+ <p class="text-xs text-green-500 mt-1">↑ 比上月增加2人</p>
|
|
|
+ </div>
|
|
|
+ <div class="stat-card">
|
|
|
+ <p class="text-sm text-gray-600 mb-2">平均薪资</p>
|
|
|
+ <p class="text-2xl font-bold text-gray-800">¥4,650</p>
|
|
|
+ <p class="text-xs text-green-500 mt-1">↑ 比上月增加¥150</p>
|
|
|
+ </div>
|
|
|
+ <div class="stat-card">
|
|
|
+ <p class="text-sm text-gray-600 mb-2">在职率</p>
|
|
|
+ <p class="text-2xl font-bold text-gray-800">92%</p>
|
|
|
+ <p class="text-xs text-green-500 mt-1">↑ 比上月提升3%</p>
|
|
|
+ </div>
|
|
|
+ <div class="stat-card">
|
|
|
+ <p class="text-sm text-gray-600 mb-2">新增人数</p>
|
|
|
+ <p class="text-2xl font-bold text-gray-800">3</p>
|
|
|
+ <p class="text-xs text-red-500 mt-1">↓ 比上月减少1人</p>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+
|
|
|
+ <!-- 残疾类型分布 -->
|
|
|
+ <div class="card bg-white p-4 mb-4">
|
|
|
+ <h3 class="font-semibold text-gray-700 mb-3">残疾类型分布</h3>
|
|
|
+ <div class="chart-container mb-2">
|
|
|
+ <div class="chart-bar" style="left: 20px; height: 160px;"></div>
|
|
|
+ <div class="chart-bar" style="left: 70px; height: 120px;"></div>
|
|
|
+ <div class="chart-bar" style="left: 120px; height: 80px;"></div>
|
|
|
+ <div class="chart-bar" style="left: 170px; height: 60px;"></div>
|
|
|
+ <div class="chart-bar" style="left: 220px; height: 40px;"></div>
|
|
|
+ <div class="chart-bar" style="left: 270px; height: 30px;"></div>
|
|
|
+ </div>
|
|
|
+ <div class="flex justify-between text-xs text-gray-500">
|
|
|
+ <span>肢体</span>
|
|
|
+ <span>听力</span>
|
|
|
+ <span>视力</span>
|
|
|
+ <span>言语</span>
|
|
|
+ <span>智力</span>
|
|
|
+ <span>精神</span>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+
|
|
|
+ <!-- 在职状态统计 -->
|
|
|
+ <div class="card bg-white p-4 mb-4">
|
|
|
+ <h3 class="font-semibold text-gray-700 mb-3">在职状态统计</h3>
|
|
|
+ <div class="flex items-center justify-center">
|
|
|
+ <div class="w-32 h-32 rounded-full border-8 border-blue-500 border-t-transparent transform -rotate-45"></div>
|
|
|
+ <div class="ml-6">
|
|
|
+ <div class="flex items-center mb-2">
|
|
|
+ <div class="w-3 h-3 rounded-full bg-blue-500 mr-2"></div>
|
|
|
+ <span class="text-sm text-gray-700">在职: 24人 (75%)</span>
|
|
|
+ </div>
|
|
|
+ <div class="flex items-center mb-2">
|
|
|
+ <div class="w-3 h-3 rounded-full bg-yellow-500 mr-2"></div>
|
|
|
+ <span class="text-sm text-gray-700">待入职: 5人 (16%)</span>
|
|
|
+ </div>
|
|
|
+ <div class="flex items-center">
|
|
|
+ <div class="w-3 h-3 rounded-full bg-red-500 mr-2"></div>
|
|
|
+ <span class="text-sm text-gray-700">离职: 3人 (9%)</span>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+
|
|
|
+ <!-- 薪资分布 -->
|
|
|
+ <div class="card bg-white p-4">
|
|
|
+ <h3 class="font-semibold text-gray-700 mb-3">薪资分布</h3>
|
|
|
+ <div class="space-y-3">
|
|
|
+ <div>
|
|
|
+ <div class="flex justify-between text-sm mb-1">
|
|
|
+ <span class="text-gray-700">¥4,000-¥4,500</span>
|
|
|
+ <span class="text-gray-500">8人</span>
|
|
|
+ </div>
|
|
|
+ <div class="progress-bar">
|
|
|
+ <div class="progress-fill bg-blue-500" style="width: 40%"></div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div>
|
|
|
+ <div class="flex justify-between text-sm mb-1">
|
|
|
+ <span class="text-gray-700">¥4,500-¥5,000</span>
|
|
|
+ <span class="text-gray-500">12人</span>
|
|
|
+ </div>
|
|
|
+ <div class="progress-bar">
|
|
|
+ <div class="progress-fill bg-green-500" style="width: 60%"></div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div>
|
|
|
+ <div class="flex justify-between text-sm mb-1">
|
|
|
+ <span class="text-gray-700">¥5,000-¥5,500</span>
|
|
|
+ <span class="text-gray-500">4人</span>
|
|
|
+ </div>
|
|
|
+ <div class="progress-bar">
|
|
|
+ <div class="progress-fill bg-yellow-500" style="width: 20%"></div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+
|
|
|
+ <!-- 底部导航 -->
|
|
|
+ <div class="tab-bar">
|
|
|
+ <div class="tab-item">
|
|
|
+ <i class="fas fa-home text-lg mb-1"></i>
|
|
|
+ <span>首页</span>
|
|
|
+ </div>
|
|
|
+ <div class="tab-item">
|
|
|
+ <i class="fas fa-user-friends text-lg mb-1"></i>
|
|
|
+ <span>人才</span>
|
|
|
+ </div>
|
|
|
+ <div class="tab-item active">
|
|
|
+ <i class="fas fa-chart-bar text-lg mb-1"></i>
|
|
|
+ <span>数据</span>
|
|
|
+ </div>
|
|
|
+ <div class="tab-item">
|
|
|
+ <i class="fas fa-user text-lg mb-1"></i>
|
|
|
+ <span>我的</span>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+
|
|
|
+ <!-- 页面6: 订单管理页 -->
|
|
|
+ <div class="flex flex-col items-center">
|
|
|
+ <h2 class="text-xl font-semibold text-gray-700 mb-4">订单管理页</h2>
|
|
|
+ <div class="mobile-frame">
|
|
|
+ <div class="status-bar">
|
|
|
+ <span>9:41</span>
|
|
|
+ <div class="flex space-x-1">
|
|
|
+ <i class="fas fa-signal"></i>
|
|
|
+ <i class="fas fa-wifi"></i>
|
|
|
+ <i class="fas fa-battery-three-quarters"></i>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+
|
|
|
+ <div class="h-[calc(100%-104px)] overflow-y-auto">
|
|
|
+ <!-- 订单筛选 -->
|
|
|
+ <div class="p-4 border-b border-gray-200">
|
|
|
+ <div class="flex space-x-2 overflow-x-auto pb-2">
|
|
|
+ <span class="bg-blue-100 text-blue-800 text-xs px-3 py-1 rounded-full whitespace-nowrap">全部订单</span>
|
|
|
+ <span class="bg-gray-100 text-gray-800 text-xs px-3 py-1 rounded-full whitespace-nowrap">进行中</span>
|
|
|
+ <span class="bg-gray-100 text-gray-800 text-xs px-3 py-1 rounded-full whitespace-nowrap">已完成</span>
|
|
|
+ <span class="bg-gray-100 text-gray-800 text-xs px-3 py-1 rounded-full whitespace-nowrap">已取消</span>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+
|
|
|
+ <!-- 订单列表 -->
|
|
|
+ <div class="p-4">
|
|
|
+ <div class="flex justify-between items-center mb-4">
|
|
|
+ <h3 class="font-semibold text-gray-700">订单列表</h3>
|
|
|
+ <button class="bg-blue-500 text-white text-xs px-3 py-1 rounded-lg">
|
|
|
+ <i class="fas fa-plus mr-1"></i>新建订单
|
|
|
+ </button>
|
|
|
+ </div>
|
|
|
+
|
|
|
+ <div class="space-y-4">
|
|
|
+ <!-- 订单卡片1 -->
|
|
|
+ <div class="card bg-white p-4">
|
|
|
+ <div class="flex justify-between items-start mb-3">
|
|
|
+ <div>
|
|
|
+ <h4 class="font-semibold text-gray-800">阿里巴巴2023-11</h4>
|
|
|
+ <p class="text-xs text-gray-500">2023-11-01 创建</p>
|
|
|
+ </div>
|
|
|
+ <span class="bg-green-100 text-green-800 text-xs px-2 py-1 rounded-full">进行中</span>
|
|
|
+ </div>
|
|
|
+ <div class="grid grid-cols-2 gap-3 text-sm mb-3">
|
|
|
+ <div>
|
|
|
+ <p class="text-gray-500">预计人数</p>
|
|
|
+ <p class="text-gray-800">30人</p>
|
|
|
+ </div>
|
|
|
+ <div>
|
|
|
+ <p class="text-gray-500">实际人数</p>
|
|
|
+ <p class="text-gray-800">24人</p>
|
|
|
+ </div>
|
|
|
+ <div>
|
|
|
+ <p class="text-gray-500">开始日期</p>
|
|
|
+ <p class="text-gray-800">2023-11-01</p>
|
|
|
+ </div>
|
|
|
+ <div>
|
|
|
+ <p class="text-gray-500">预计结束</p>
|
|
|
+ <p class="text-gray-800">2024-10-31</p>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div class="flex justify-between text-sm">
|
|
|
+ <button class="text-blue-500">
|
|
|
+ <i class="fas fa-eye mr-1"></i>查看详情
|
|
|
+ </button>
|
|
|
+ <button class="text-gray-500">
|
|
|
+ <i class="fas fa-edit mr-1"></i>编辑
|
|
|
+ </button>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+
|
|
|
+ <!-- 订单卡片2 -->
|
|
|
+ <div class="card bg-white p-4">
|
|
|
+ <div class="flex justify-between items-start mb-3">
|
|
|
+ <div>
|
|
|
+ <h4 class="font-semibold text-gray-800">腾讯科技2023-08</h4>
|
|
|
+ <p class="text-xs text-gray-500">2023-08-15 创建</p>
|
|
|
+ </div>
|
|
|
+ <span class="bg-blue-100 text-blue-800 text-xs px-2 py-1 rounded-full">已完成</span>
|
|
|
+ </div>
|
|
|
+ <div class="grid grid-cols-2 gap-3 text-sm mb-3">
|
|
|
+ <div>
|
|
|
+ <p class="text-gray-500">预计人数</p>
|
|
|
+ <p class="text-gray-800">20人</p>
|
|
|
+ </div>
|
|
|
+ <div>
|
|
|
+ <p class="text-gray-500">实际人数</p>
|
|
|
+ <p class="text-gray-800">18人</p>
|
|
|
+ </div>
|
|
|
+ <div>
|
|
|
+ <p class="text-gray-500">开始日期</p>
|
|
|
+ <p class="text-gray-800">2023-08-15</p>
|
|
|
+ </div>
|
|
|
+ <div>
|
|
|
+ <p class="text-gray-500">结束日期</p>
|
|
|
+ <p class="text-gray-800">2023-10-31</p>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div class="flex justify-between text-sm">
|
|
|
+ <button class="text-blue-500">
|
|
|
+ <i class="fas fa-eye mr-1"></i>查看详情
|
|
|
+ </button>
|
|
|
+ <button class="text-gray-500">
|
|
|
+ <i class="fas fa-chart-bar mr-1"></i>数据报告
|
|
|
+ </button>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+
|
|
|
+ <!-- 订单卡片3 -->
|
|
|
+ <div class="card bg-white p-4">
|
|
|
+ <div class="flex justify-between items-start mb-3">
|
|
|
+ <div>
|
|
|
+ <h4 class="font-semibold text-gray-800">字节跳动2023-12</h4>
|
|
|
+ <p class="text-xs text-gray-500">2023-11-20 创建</p>
|
|
|
+ </div>
|
|
|
+ <span class="bg-yellow-100 text-yellow-800 text-xs px-2 py-1 rounded-full">待开始</span>
|
|
|
+ </div>
|
|
|
+ <div class="grid grid-cols-2 gap-3 text-sm mb-3">
|
|
|
+ <div>
|
|
|
+ <p class="text-gray-500">预计人数</p>
|
|
|
+ <p class="text-gray-800">25人</p>
|
|
|
+ </div>
|
|
|
+ <div>
|
|
|
+ <p class="text-gray-500">实际人数</p>
|
|
|
+ <p class="text-gray-800">5人</p>
|
|
|
+ </div>
|
|
|
+ <div>
|
|
|
+ <p class="text-gray-500">预计开始</p>
|
|
|
+ <p class="text-gray-800">2023-12-01</p>
|
|
|
+ </div>
|
|
|
+ <div>
|
|
|
+ <p class="text-gray-500">预计结束</p>
|
|
|
+ <p class="text-gray-800">2024-11-30</p>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div class="flex justify-between text-sm">
|
|
|
+ <button class="text-blue-500">
|
|
|
+ <i class="fas fa-eye mr-1"></i>查看详情
|
|
|
+ </button>
|
|
|
+ <button class="text-gray-500">
|
|
|
+ <i class="fas fa-edit mr-1"></i>编辑
|
|
|
+ </button>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+
|
|
|
+ <!-- 底部导航 -->
|
|
|
+ <div class="tab-bar">
|
|
|
+ <div class="tab-item">
|
|
|
+ <i class="fas fa-home text-lg mb-1"></i>
|
|
|
+ <span>首页</span>
|
|
|
+ </div>
|
|
|
+ <div class="tab-item">
|
|
|
+ <i class="fas fa-user-friends text-lg mb-1"></i>
|
|
|
+ <span>人才</span>
|
|
|
+ </div>
|
|
|
+ <div class="tab-item">
|
|
|
+ <i class="fas fa-chart-bar text-lg mb-1"></i>
|
|
|
+ <span>数据</span>
|
|
|
+ </div>
|
|
|
+ <div class="tab-item">
|
|
|
+ <i class="fas fa-user text-lg mb-1"></i>
|
|
|
+ <span>我的</span>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+
|
|
|
+ <!-- 页面7: 企业设置页 -->
|
|
|
+ <div class="flex flex-col items-center">
|
|
|
+ <h2 class="text-xl font-semibold text-gray-700 mb-4">企业设置页</h2>
|
|
|
+ <div class="mobile-frame">
|
|
|
+ <div class="status-bar">
|
|
|
+ <span>9:41</span>
|
|
|
+ <div class="flex space-x-1">
|
|
|
+ <i class="fas fa-signal"></i>
|
|
|
+ <i class="fas fa-wifi"></i>
|
|
|
+ <i class="fas fa-battery-three-quarters"></i>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+
|
|
|
+ <div class="h-[calc(100%-104px)] overflow-y-auto">
|
|
|
+ <!-- 企业信息 -->
|
|
|
+ <div class="p-4 border-b border-gray-200">
|
|
|
+ <div class="flex items-center mb-4">
|
|
|
+ <div class="w-16 h-16 rounded-full bg-blue-100 flex items-center justify-center mr-4">
|
|
|
+ <i class="fas fa-building text-blue-500 text-2xl"></i>
|
|
|
+ </div>
|
|
|
+ <div>
|
|
|
+ <h3 class="font-semibold text-gray-800">阿里巴巴集团</h3>
|
|
|
+ <p class="text-sm text-gray-500">企业账号</p>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div class="grid grid-cols-3 gap-3 text-center">
|
|
|
+ <div>
|
|
|
+ <p class="text-xl font-bold text-gray-800">24</p>
|
|
|
+ <p class="text-xs text-gray-500">在职人员</p>
|
|
|
+ </div>
|
|
|
+ <div>
|
|
|
+ <p class="text-xl font-bold text-gray-800">3</p>
|
|
|
+ <p class="text-xs text-gray-500">进行中订单</p>
|
|
|
+ </div>
|
|
|
+ <div>
|
|
|
+ <p class="text-xl font-bold text-gray-800">12</p>
|
|
|
+ <p class="text-xs text-gray-500">累计订单</p>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+
|
|
|
+ <!-- 功能列表 -->
|
|
|
+ <div class="p-4">
|
|
|
+ <div class="space-y-1 mb-6">
|
|
|
+ <div class="flex items-center justify-between p-3 rounded-lg hover:bg-gray-50">
|
|
|
+ <div class="flex items-center">
|
|
|
+ <div class="w-10 h-10 rounded-full bg-blue-100 flex items-center justify-center mr-3">
|
|
|
+ <i class="fas fa-user text-blue-500"></i>
|
|
|
+ </div>
|
|
|
+ <span class="text-gray-700">账号信息</span>
|
|
|
+ </div>
|
|
|
+ <i class="fas fa-chevron-right text-gray-400"></i>
|
|
|
+ </div>
|
|
|
+ <div class="flex items-center justify-between p-3 rounded-lg hover:bg-gray-50">
|
|
|
+ <div class="flex items-center">
|
|
|
+ <div class="w-10 h-10 rounded-full bg-green-100 flex items-center justify-center mr-3">
|
|
|
+ <i class="fas fa-shield-alt text-green-500"></i>
|
|
|
+ </div>
|
|
|
+ <span class="text-gray-700">安全设置</span>
|
|
|
+ </div>
|
|
|
+ <i class="fas fa-chevron-right text-gray-400"></i>
|
|
|
+ </div>
|
|
|
+ <div class="flex items-center justify-between p-3 rounded-lg hover:bg-gray-50">
|
|
|
+ <div class="flex items-center">
|
|
|
+ <div class="w-10 h-10 rounded-full bg-purple-100 flex items-center justify-center mr-3">
|
|
|
+ <i class="fas fa-bell text-purple-500"></i>
|
|
|
+ </div>
|
|
|
+ <span class="text-gray-700">消息通知</span>
|
|
|
+ </div>
|
|
|
+ <i class="fas fa-chevron-right text-gray-400"></i>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+
|
|
|
+ <div class="space-y-1 mb-6">
|
|
|
+ <div class="flex items-center justify-between p-3 rounded-lg hover:bg-gray-50">
|
|
|
+ <div class="flex items-center">
|
|
|
+ <div class="w-10 h-10 rounded-full bg-yellow-100 flex items-center justify-center mr-3">
|
|
|
+ <i class="fas fa-question-circle text-yellow-500"></i>
|
|
|
+ </div>
|
|
|
+ <span class="text-gray-700">帮助中心</span>
|
|
|
+ </div>
|
|
|
+ <i class="fas fa-chevron-right text-gray-400"></i>
|
|
|
+ </div>
|
|
|
+ <div class="flex items-center justify-between p-3 rounded-lg hover:bg-gray-50">
|
|
|
+ <div class="flex items-center">
|
|
|
+ <div class="w-10 h-10 rounded-full bg-indigo-100 flex items-center justify-center mr-3">
|
|
|
+ <i class="fas fa-file-alt text-indigo-500"></i>
|
|
|
+ </div>
|
|
|
+ <span class="text-gray-700">用户协议</span>
|
|
|
+ </div>
|
|
|
+ <i class="fas fa-chevron-right text-gray-400"></i>
|
|
|
+ </div>
|
|
|
+ <div class="flex items-center justify-between p-3 rounded-lg hover:bg-gray-50">
|
|
|
+ <div class="flex items-center">
|
|
|
+ <div class="w-10 h-10 rounded-full bg-pink-100 flex items-center justify-center mr-3">
|
|
|
+ <i class="fas fa-lock text-pink-500"></i>
|
|
|
+ </div>
|
|
|
+ <span class="text-gray-700">隐私政策</span>
|
|
|
+ </div>
|
|
|
+ <i class="fas fa-chevron-right text-gray-400"></i>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+
|
|
|
+ <div class="space-y-1">
|
|
|
+ <div class="flex items-center justify-between p-3 rounded-lg hover:bg-gray-50">
|
|
|
+ <div class="flex items-center">
|
|
|
+ <div class="w-10 h-10 rounded-full bg-red-100 flex items-center justify-center mr-3">
|
|
|
+ <i class="fas fa-sign-out-alt text-red-500"></i>
|
|
|
+ </div>
|
|
|
+ <span class="text-gray-700">退出登录</span>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+
|
|
|
+ <!-- 底部导航 -->
|
|
|
+ <div class="tab-bar">
|
|
|
+ <div class="tab-item">
|
|
|
+ <i class="fas fa-home text-lg mb-1"></i>
|
|
|
+ <span>首页</span>
|
|
|
+ </div>
|
|
|
+ <div class="tab-item">
|
|
|
+ <i class="fas fa-user-friends text-lg mb-1"></i>
|
|
|
+ <span>人才</span>
|
|
|
+ </div>
|
|
|
+ <div class="tab-item">
|
|
|
+ <i class="fas fa-chart-bar text-lg mb-1"></i>
|
|
|
+ <span>数据</span>
|
|
|
+ </div>
|
|
|
+ <div class="tab-item active">
|
|
|
+ <i class="fas fa-user text-lg mb-1"></i>
|
|
|
+ <span>我的</span>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+
|
|
|
+ <div class="mt-12 text-center text-gray-600">
|
|
|
+ <p>用人方小程序完整原型设计 - 基于数据库表结构设计的所有主要页面</p>
|
|
|
+ <p class="mt-2">数据来源: allin_2025-11-25.sql</p>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+</body>
|
|
|
+</html>
|