2
0

yongren.html 90 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593
  1. <!DOCTYPE html>
  2. <html lang="zh-CN">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <title>用人方小程序 - 完整原型</title>
  7. <script src="https://cdn.tailwindcss.com"></script>
  8. <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
  9. <style>
  10. .mobile-frame {
  11. width: 375px;
  12. height: 667px;
  13. border-radius: 40px;
  14. box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  15. overflow: hidden;
  16. position: relative;
  17. background-color: white;
  18. }
  19. .status-bar {
  20. height: 44px;
  21. background: rgba(255, 255, 255, 0.9);
  22. display: flex;
  23. align-items: center;
  24. justify-content: space-between;
  25. padding: 0 20px;
  26. font-size: 14px;
  27. border-bottom: 1px solid #f0f0f0;
  28. }
  29. .tab-bar {
  30. height: 60px;
  31. background: white;
  32. display: flex;
  33. align-items: center;
  34. justify-content: space-around;
  35. border-top: 1px solid #f0f0f0;
  36. }
  37. .tab-item {
  38. display: flex;
  39. flex-direction: column;
  40. align-items: center;
  41. justify-content: center;
  42. font-size: 12px;
  43. color: #999;
  44. cursor: pointer;
  45. }
  46. .tab-item.active {
  47. color: #3b82f6;
  48. }
  49. .card {
  50. border-radius: 12px;
  51. box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  52. overflow: hidden;
  53. }
  54. .gradient-bg {
  55. background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
  56. }
  57. .person-card {
  58. transition: all 0.3s ease;
  59. }
  60. .person-card:hover {
  61. transform: translateY(-2px);
  62. box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  63. }
  64. .avatar {
  65. width: 60px;
  66. height: 60px;
  67. border-radius: 50%;
  68. object-fit: cover;
  69. }
  70. .name-avatar {
  71. width: 60px;
  72. height: 60px;
  73. border-radius: 50%;
  74. display: flex;
  75. align-items: center;
  76. justify-content: center;
  77. font-size: 24px;
  78. font-weight: bold;
  79. color: white;
  80. margin-right: 12px;
  81. }
  82. .name-avatar.blue {
  83. background-color: #3b82f6;
  84. }
  85. .name-avatar.green {
  86. background-color: #10b981;
  87. }
  88. .name-avatar.purple {
  89. background-color: #8b5cf6;
  90. }
  91. .name-avatar.orange {
  92. background-color: #f59e0b;
  93. }
  94. .pie-chart {
  95. width: 200px;
  96. height: 200px;
  97. border-radius: 50%;
  98. position: relative;
  99. margin: 0 auto;
  100. background: conic-gradient(
  101. #3b82f6 0% 40%,
  102. #10b981 40% 65%,
  103. #f59e0b 65% 85%,
  104. #8b5cf6 85% 100%
  105. );
  106. }
  107. .pie-legend {
  108. display: flex;
  109. flex-wrap: wrap;
  110. justify-content: center;
  111. gap: 12px;
  112. margin-top: 16px;
  113. }
  114. .legend-item {
  115. display: flex;
  116. align-items: center;
  117. font-size: 12px;
  118. }
  119. .legend-color {
  120. width: 12px;
  121. height: 12px;
  122. border-radius: 2px;
  123. margin-right: 6px;
  124. }
  125. .bar-chart {
  126. height: 120px;
  127. display: flex;
  128. align-items: end;
  129. justify-content: center;
  130. gap: 40px;
  131. margin: 20px 0;
  132. }
  133. .bar-container {
  134. display: flex;
  135. flex-direction: column;
  136. align-items: center;
  137. }
  138. .bar {
  139. width: 40px;
  140. border-radius: 4px 4px 0 0;
  141. transition: height 0.3s ease;
  142. }
  143. .bar-label {
  144. margin-top: 8px;
  145. font-size: 12px;
  146. color: #6b7280;
  147. }
  148. .bar-value {
  149. font-size: 14px;
  150. font-weight: 600;
  151. margin-bottom: 4px;
  152. }
  153. .progress-bar {
  154. height: 6px;
  155. border-radius: 3px;
  156. background-color: #e5e7eb;
  157. overflow: hidden;
  158. }
  159. .progress-fill {
  160. height: 100%;
  161. border-radius: 3px;
  162. background-color: #10b981;
  163. }
  164. .stat-card {
  165. background: white;
  166. border-radius: 12px;
  167. padding: 16px;
  168. box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  169. }
  170. .pulse-dot {
  171. width: 10px;
  172. height: 10px;
  173. border-radius: 50%;
  174. background-color: #10b981;
  175. animation: pulse 2s infinite;
  176. }
  177. .page {
  178. display: none;
  179. height: calc(100% - 104px);
  180. overflow-y: auto;
  181. }
  182. .page.active {
  183. display: block;
  184. }
  185. .chart-container {
  186. height: 200px;
  187. position: relative;
  188. }
  189. .chart-bar {
  190. position: absolute;
  191. bottom: 0;
  192. width: 30px;
  193. background-color: #3b82f6;
  194. border-radius: 4px 4px 0 0;
  195. }
  196. @keyframes pulse {
  197. 0% {
  198. transform: scale(0.95);
  199. box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  200. }
  201. 70% {
  202. transform: scale(1);
  203. box-shadow: 0 0 0 10px rgba(16, 185, 129, 0);
  204. }
  205. 100% {
  206. transform: scale(0.95);
  207. box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
  208. }
  209. }
  210. </style>
  211. </head>
  212. <body class="bg-gray-100 min-h-screen p-6">
  213. <div class="max-w-6xl mx-auto">
  214. <h1 class="text-3xl font-bold text-center text-gray-800 mb-2">用人方小程序 - 完整原型设计</h1>
  215. <p class="text-center text-gray-600 mb-8">基于数据库结构的完整页面原型展示</p>
  216. <div class="flex flex-wrap justify-center gap-8">
  217. <!-- 页面1: 登录页 -->
  218. <div class="flex flex-col items-center">
  219. <h2 class="text-xl font-semibold text-gray-700 mb-4">登录页</h2>
  220. <div class="mobile-frame">
  221. <div class="status-bar">
  222. <span>9:41</span>
  223. <div class="flex space-x-1">
  224. <i class="fas fa-signal"></i>
  225. <i class="fas fa-wifi"></i>
  226. <i class="fas fa-battery-three-quarters"></i>
  227. </div>
  228. </div>
  229. <div class="h-[calc(100%-44px)] flex flex-col justify-center p-8">
  230. <div class="text-center mb-10">
  231. <h1 class="text-2xl font-bold text-gray-800 mb-2">残疾人就业平台</h1>
  232. <p class="text-gray-600">为人力资源公司提供专业服务</p>
  233. </div>
  234. <div class="mb-6">
  235. <div class="flex items-center border border-gray-300 rounded-lg px-4 py-3 mb-4">
  236. <i class="fas fa-phone text-gray-400 mr-3"></i>
  237. <input type="tel" placeholder="请输入手机号" class="w-full outline-none">
  238. </div>
  239. <div class="flex items-center border border-gray-300 rounded-lg px-4 py-3">
  240. <i class="fas fa-lock text-gray-400 mr-3"></i>
  241. <input type="password" placeholder="请输入密码" class="w-full outline-none">
  242. </div>
  243. </div>
  244. <button class="gradient-bg text-white w-full py-3 rounded-lg font-medium mb-4">登录</button>
  245. <div class="text-center">
  246. <a href="#" class="text-sm text-blue-500">忘记密码?</a>
  247. </div>
  248. <div class="mt-12 text-center text-gray-500 text-sm">
  249. <p>登录即表示同意<span class="text-blue-500">《用户协议》</span>和<span class="text-blue-500">《隐私政策》</span></p>
  250. </div>
  251. </div>
  252. </div>
  253. </div>
  254. <!-- 页面2: 首页 -->
  255. <div class="flex flex-col items-center">
  256. <h2 class="text-xl font-semibold text-gray-700 mb-4">首页/看板</h2>
  257. <div class="mobile-frame">
  258. <div class="status-bar">
  259. <span>9:41</span>
  260. <div class="flex space-x-1">
  261. <i class="fas fa-signal"></i>
  262. <i class="fas fa-wifi"></i>
  263. <i class="fas fa-battery-three-quarters"></i>
  264. </div>
  265. </div>
  266. <div class="h-[calc(100%-104px)] overflow-y-auto p-4">
  267. <!-- 顶部信息栏 -->
  268. <div class="gradient-bg text-white rounded-2xl p-5 mb-4">
  269. <div class="flex justify-between items-center">
  270. <div>
  271. <p class="text-sm opacity-80">欢迎回来</p>
  272. <h2 class="text-xl font-bold">阿里巴巴集团</h2>
  273. </div>
  274. <div class="w-12 h-12 rounded-full bg-white/20 flex items-center justify-center">
  275. <i class="fas fa-building text-white text-xl"></i>
  276. </div>
  277. </div>
  278. <div class="mt-4 flex justify-between">
  279. <div class="text-center">
  280. <p class="text-2xl font-bold">24</p>
  281. <p class="text-xs opacity-80">在职人员</p>
  282. </div>
  283. <div class="text-center">
  284. <p class="text-2xl font-bold">5</p>
  285. <p class="text-xs opacity-80">待入职</p>
  286. </div>
  287. <div class="text-center">
  288. <p class="text-2xl font-bold">3</p>
  289. <p class="text-xs opacity-80">本月新增</p>
  290. </div>
  291. </div>
  292. </div>
  293. <!-- 快速操作 -->
  294. <div class="grid grid-cols-4 gap-3 mb-4">
  295. <div class="bg-blue-50 rounded-xl p-3 text-center">
  296. <i class="fas fa-user-friends text-blue-500 text-lg mb-1"></i>
  297. <p class="text-xs text-gray-700">人才库</p>
  298. </div>
  299. <div class="bg-green-50 rounded-xl p-3 text-center">
  300. <i class="fas fa-chart-pie text-green-500 text-lg mb-1"></i>
  301. <p class="text-xs text-gray-700">数据统计</p>
  302. </div>
  303. <div class="bg-purple-50 rounded-xl p-3 text-center">
  304. <i class="fas fa-file-alt text-purple-500 text-lg mb-1"></i>
  305. <p class="text-xs text-gray-700">订单管理</p>
  306. </div>
  307. <div class="bg-yellow-50 rounded-xl p-3 text-center">
  308. <i class="fas fa-cog text-yellow-500 text-lg mb-1"></i>
  309. <p class="text-xs text-gray-700">设置</p>
  310. </div>
  311. </div>
  312. <!-- 人才列表 -->
  313. <div class="mb-4">
  314. <div class="flex justify-between items-center mb-3">
  315. <h3 class="font-semibold text-gray-700">分配人才</h3>
  316. <a href="#" class="text-xs text-blue-500">查看全部</a>
  317. </div>
  318. <div class="space-y-3">
  319. <!-- 人才卡片1 -->
  320. <div class="person-card card bg-white p-4 flex items-center">
  321. <div class="name-avatar blue">张</div>
  322. <div class="flex-1">
  323. <div class="flex justify-between items-start">
  324. <div>
  325. <h4 class="font-semibold text-gray-800">张明</h4>
  326. <p class="text-xs text-gray-500">肢体残疾 · 三级</p>
  327. </div>
  328. <span class="bg-green-100 text-green-800 text-xs px-2 py-1 rounded-full">在职</span>
  329. </div>
  330. <div class="mt-2">
  331. <div class="flex justify-between text-xs text-gray-500 mb-1">
  332. <span>入职时间: 2023-08-15</span>
  333. <span>薪资: ¥4,800</span>
  334. </div>
  335. <div class="progress-bar">
  336. <div class="progress-fill" style="width: 85%"></div>
  337. </div>
  338. </div>
  339. </div>
  340. </div>
  341. <!-- 人才卡片2 -->
  342. <div class="person-card card bg-white p-4 flex items-center">
  343. <div class="name-avatar green">李</div>
  344. <div class="flex-1">
  345. <div class="flex justify-between items-start">
  346. <div>
  347. <h4 class="font-semibold text-gray-800">李小红</h4>
  348. <p class="text-xs text-gray-500">听力残疾 · 二级</p>
  349. </div>
  350. <span class="bg-yellow-100 text-yellow-800 text-xs px-2 py-1 rounded-full">待入职</span>
  351. </div>
  352. <div class="mt-2">
  353. <div class="flex justify-between text-xs text-gray-500 mb-1">
  354. <span>预计入职: 2023-12-01</span>
  355. <span>薪资: ¥4,200</span>
  356. </div>
  357. <div class="progress-bar">
  358. <div class="progress-fill" style="width: 60%"></div>
  359. </div>
  360. </div>
  361. </div>
  362. </div>
  363. </div>
  364. </div>
  365. <!-- 数据统计 -->
  366. <div class="mb-4">
  367. <h3 class="font-semibold text-gray-700 mb-3">数据统计</h3>
  368. <div class="grid grid-cols-2 gap-3">
  369. <div class="stat-card">
  370. <div class="flex items-center mb-2">
  371. <div class="pulse-dot mr-2"></div>
  372. <p class="text-sm text-gray-600">在职率</p>
  373. </div>
  374. <p class="text-2xl font-bold text-gray-800">92%</p>
  375. </div>
  376. <div class="stat-card">
  377. <p class="text-sm text-gray-600 mb-2">平均薪资</p>
  378. <p class="text-2xl font-bold text-gray-800">¥4,650</p>
  379. </div>
  380. </div>
  381. </div>
  382. </div>
  383. <!-- 底部导航 -->
  384. <div class="tab-bar">
  385. <div class="tab-item active">
  386. <i class="fas fa-home text-lg mb-1"></i>
  387. <span>首页</span>
  388. </div>
  389. <div class="tab-item">
  390. <i class="fas fa-user-friends text-lg mb-1"></i>
  391. <span>人才</span>
  392. </div>
  393. <div class="tab-item">
  394. <i class="fas fa-chart-bar text-lg mb-1"></i>
  395. <span>数据</span>
  396. </div>
  397. <div class="tab-item">
  398. <i class="fas fa-user text-lg mb-1"></i>
  399. <span>我的</span>
  400. </div>
  401. </div>
  402. </div>
  403. </div>
  404. <!-- 页面3: 人才列表页 -->
  405. <div class="flex flex-col items-center">
  406. <h2 class="text-xl font-semibold text-gray-700 mb-4">人才列表页</h2>
  407. <div class="mobile-frame">
  408. <div class="status-bar">
  409. <span>9:41</span>
  410. <div class="flex space-x-1">
  411. <i class="fas fa-signal"></i>
  412. <i class="fas fa-wifi"></i>
  413. <i class="fas fa-battery-three-quarters"></i>
  414. </div>
  415. </div>
  416. <div class="h-[calc(100%-104px)] overflow-y-auto">
  417. <!-- 搜索和筛选 -->
  418. <div class="p-4 border-b border-gray-200">
  419. <div class="flex items-center bg-gray-100 rounded-lg px-4 py-2 mb-3">
  420. <i class="fas fa-search text-gray-400 mr-2"></i>
  421. <input type="text" placeholder="搜索姓名、残疾证号..." class="w-full bg-transparent outline-none">
  422. </div>
  423. <div class="flex space-x-2 overflow-x-auto pb-2">
  424. <span class="bg-blue-100 text-blue-800 text-xs px-3 py-1 rounded-full whitespace-nowrap">全部</span>
  425. <span class="bg-gray-100 text-gray-800 text-xs px-3 py-1 rounded-full whitespace-nowrap">在职</span>
  426. <span class="bg-gray-100 text-gray-800 text-xs px-3 py-1 rounded-full whitespace-nowrap">待入职</span>
  427. <span class="bg-gray-100 text-gray-800 text-xs px-3 py-1 rounded-full whitespace-nowrap">离职</span>
  428. <span class="bg-gray-100 text-gray-800 text-xs px-3 py-1 rounded-full whitespace-nowrap">肢体残疾</span>
  429. <span class="bg-gray-100 text-gray-800 text-xs px-3 py-1 rounded-full whitespace-nowrap">听力残疾</span>
  430. </div>
  431. </div>
  432. <!-- 人才列表 -->
  433. <div class="p-4">
  434. <div class="flex justify-between items-center mb-4">
  435. <h3 class="font-semibold text-gray-700">全部人才 (32)</h3>
  436. <div class="flex space-x-2">
  437. <button class="text-gray-500">
  438. <i class="fas fa-sort"></i>
  439. </button>
  440. <button class="text-gray-500">
  441. <i class="fas fa-filter"></i>
  442. </button>
  443. </div>
  444. </div>
  445. <div class="space-y-3">
  446. <!-- 人才卡片1 -->
  447. <div class="person-card card bg-white p-4 flex items-center">
  448. <div class="name-avatar blue">张</div>
  449. <div class="flex-1">
  450. <div class="flex justify-between items-start">
  451. <div>
  452. <h4 class="font-semibold text-gray-800">张明</h4>
  453. <p class="text-xs text-gray-500">肢体残疾 · 三级 · 男 · 28岁</p>
  454. </div>
  455. <span class="bg-green-100 text-green-800 text-xs px-2 py-1 rounded-full">在职</span>
  456. </div>
  457. <div class="mt-2 flex justify-between text-xs text-gray-500">
  458. <span>入职: 2023-08-15</span>
  459. <span>薪资: ¥4,800</span>
  460. </div>
  461. </div>
  462. </div>
  463. <!-- 人才卡片2 -->
  464. <div class="person-card card bg-white p-4 flex items-center">
  465. <div class="name-avatar green">李</div>
  466. <div class="flex-1">
  467. <div class="flex justify-between items-start">
  468. <div>
  469. <h4 class="font-semibold text-gray-800">李小红</h4>
  470. <p class="text-xs text-gray-500">听力残疾 · 二级 · 女 · 25岁</p>
  471. </div>
  472. <span class="bg-yellow-100 text-yellow-800 text-xs px-2 py-1 rounded-full">待入职</span>
  473. </div>
  474. <div class="mt-2 flex justify-between text-xs text-gray-500">
  475. <span>预计入职: 2023-12-01</span>
  476. <span>薪资: ¥4,200</span>
  477. </div>
  478. </div>
  479. </div>
  480. <!-- 人才卡片3 -->
  481. <div class="person-card card bg-white p-4 flex items-center">
  482. <div class="name-avatar purple">王</div>
  483. <div class="flex-1">
  484. <div class="flex justify-between items-start">
  485. <div>
  486. <h4 class="font-semibold text-gray-800">王强</h4>
  487. <p class="text-xs text-gray-500">视力残疾 · 一级 · 男 · 32岁</p>
  488. </div>
  489. <span class="bg-green-100 text-green-800 text-xs px-2 py-1 rounded-full">在职</span>
  490. </div>
  491. <div class="mt-2 flex justify-between text-xs text-gray-500">
  492. <span>入职: 2023-05-10</span>
  493. <span>薪资: ¥5,200</span>
  494. </div>
  495. </div>
  496. </div>
  497. <!-- 人才卡片4 -->
  498. <div class="person-card card bg-white p-4 flex items-center">
  499. <div class="name-avatar orange">赵</div>
  500. <div class="flex-1">
  501. <div class="flex justify-between items-start">
  502. <div>
  503. <h4 class="font-semibold text-gray-800">赵琳</h4>
  504. <p class="text-xs text-gray-500">言语残疾 · 二级 · 女 · 29岁</p>
  505. </div>
  506. <span class="bg-red-100 text-red-800 text-xs px-2 py-1 rounded-full">离职</span>
  507. </div>
  508. <div class="mt-2 flex justify-between text-xs text-gray-500">
  509. <span>离职: 2023-10-20</span>
  510. <span>薪资: ¥4,500</span>
  511. </div>
  512. </div>
  513. </div>
  514. </div>
  515. </div>
  516. </div>
  517. <!-- 底部导航 -->
  518. <div class="tab-bar">
  519. <div class="tab-item">
  520. <i class="fas fa-home text-lg mb-1"></i>
  521. <span>首页</span>
  522. </div>
  523. <div class="tab-item active">
  524. <i class="fas fa-user-friends text-lg mb-1"></i>
  525. <span>人才</span>
  526. </div>
  527. <div class="tab-item">
  528. <i class="fas fa-chart-bar text-lg mb-1"></i>
  529. <span>数据</span>
  530. </div>
  531. <div class="tab-item">
  532. <i class="fas fa-user text-lg mb-1"></i>
  533. <span>我的</span>
  534. </div>
  535. </div>
  536. </div>
  537. </div>
  538. <!-- 页面4: 人才详情页 -->
  539. <div class="flex flex-col items-center">
  540. <h2 class="text-xl font-semibold text-gray-700 mb-4">人才详情页</h2>
  541. <div class="mobile-frame">
  542. <div class="status-bar">
  543. <span>9:41</span>
  544. <div class="flex space-x-1">
  545. <i class="fas fa-signal"></i>
  546. <i class="fas fa-wifi"></i>
  547. <i class="fas fa-battery-three-quarters"></i>
  548. </div>
  549. </div>
  550. <div class="h-[calc(100%-104px)] overflow-y-auto">
  551. <!-- 顶部信息 -->
  552. <div class="gradient-bg text-white p-5">
  553. <div class="flex justify-between items-start">
  554. <div class="flex items-center">
  555. <div class="w-16 h-16 rounded-full border-2 border-white mr-4 flex items-center justify-center bg-blue-500 text-white text-2xl font-bold">
  556. </div>
  557. <div>
  558. <h2 class="text-xl font-bold">张明</h2>
  559. <p class="text-sm opacity-80">肢体残疾 · 三级 · 在职</p>
  560. </div>
  561. </div>
  562. <div class="bg-white/20 rounded-full p-2">
  563. <i class="fas fa-ellipsis-v text-white"></i>
  564. </div>
  565. </div>
  566. <div class="mt-4 flex justify-between">
  567. <div class="text-center">
  568. <p class="text-2xl font-bold">¥4,800</p>
  569. <p class="text-xs opacity-80">当前薪资</p>
  570. </div>
  571. <div class="text-center">
  572. <p class="text-2xl font-bold">156</p>
  573. <p class="text-xs opacity-80">在职天数</p>
  574. </div>
  575. <div class="text-center">
  576. <p class="text-2xl font-bold">98%</p>
  577. <p class="text-xs opacity-80">出勤率</p>
  578. </div>
  579. </div>
  580. </div>
  581. <!-- 详细信息 -->
  582. <div class="p-4">
  583. <!-- 基本信息 -->
  584. <div class="card bg-white p-4 mb-4">
  585. <h3 class="font-semibold text-gray-700 mb-3">基本信息</h3>
  586. <div class="grid grid-cols-2 gap-3 text-sm">
  587. <div>
  588. <p class="text-gray-500">性别</p>
  589. <p class="text-gray-800">男</p>
  590. </div>
  591. <div>
  592. <p class="text-gray-500">年龄</p>
  593. <p class="text-gray-800">28岁</p>
  594. </div>
  595. <div>
  596. <p class="text-gray-500">身份证号</p>
  597. <p class="text-gray-800">440301********1234</p>
  598. </div>
  599. <div>
  600. <p class="text-gray-500">残疾证号</p>
  601. <p class="text-gray-800">CJZ202300123</p>
  602. </div>
  603. <div class="col-span-2">
  604. <p class="text-gray-500">联系地址</p>
  605. <p class="text-gray-800">广东省深圳市南山区科技园</p>
  606. </div>
  607. </div>
  608. </div>
  609. <!-- 工作信息 -->
  610. <div class="card bg-white p-4 mb-4">
  611. <h3 class="font-semibold text-gray-700 mb-3">工作信息</h3>
  612. <div class="space-y-3 text-sm">
  613. <div class="flex justify-between">
  614. <p class="text-gray-500">入职日期</p>
  615. <p class="text-gray-800">2023-08-15</p>
  616. </div>
  617. <div class="flex justify-between">
  618. <p class="text-gray-500">工作状态</p>
  619. <span class="bg-green-100 text-green-800 text-xs px-2 py-1 rounded-full">在职</span>
  620. </div>
  621. <div class="flex justify-between">
  622. <p class="text-gray-500">所属订单</p>
  623. <p class="text-gray-800">阿里巴巴2023-08</p>
  624. </div>
  625. <div class="flex justify-between">
  626. <p class="text-gray-500">岗位类型</p>
  627. <p class="text-gray-800">数据标注员</p>
  628. </div>
  629. </div>
  630. </div>
  631. <!-- 薪资信息 - 简化为单条工资金额 -->
  632. <div class="card bg-white p-4 mb-4">
  633. <h3 class="font-semibold text-gray-700 mb-3">薪资信息</h3>
  634. <div class="flex justify-between items-center">
  635. <div>
  636. <p class="text-gray-500">当前月薪</p>
  637. <p class="text-2xl font-bold text-blue-600">¥4,800</p>
  638. </div>
  639. <button class="text-blue-500 text-sm">
  640. <i class="fas fa-history mr-1"></i>薪资历史
  641. </button>
  642. </div>
  643. </div>
  644. <!-- 新增:历史工作内容 -->
  645. <div class="card bg-white p-4 mb-4">
  646. <h3 class="font-semibold text-gray-700 mb-3">历史工作内容</h3>
  647. <div class="space-y-4">
  648. <!-- 当前工作 -->
  649. <div class="flex">
  650. <div class="flex flex-col items-center mr-3">
  651. <div class="w-3 h-3 rounded-full bg-blue-500"></div>
  652. <div class="w-0.5 h-full bg-blue-200 mt-1"></div>
  653. </div>
  654. <div class="flex-1">
  655. <div class="flex justify-between items-start">
  656. <div>
  657. <p class="font-medium text-gray-800">阿里巴巴</p>
  658. <p class="text-sm text-gray-600">数据标注员</p>
  659. </div>
  660. <div class="text-right">
  661. <p class="text-sm font-medium text-blue-600">¥4,800</p>
  662. <p class="text-xs text-gray-500">2023-08-01 至今</p>
  663. </div>
  664. </div>
  665. <p class="text-sm text-gray-600 mt-2">负责图像数据标注,包括分类、框选、语义分割等;参与AI训练数据的质量审核;协助团队完成数据清洗和整理工作。</p>
  666. </div>
  667. </div>
  668. <!-- 历史工作1 -->
  669. <div class="flex">
  670. <div class="flex flex-col items-center mr-3">
  671. <div class="w-3 h-3 rounded-full bg-gray-400"></div>
  672. <div class="w-0.5 h-full bg-gray-200 mt-1"></div>
  673. </div>
  674. <div class="flex-1">
  675. <div class="flex justify-between items-start">
  676. <div>
  677. <p class="font-medium text-gray-800">腾讯科技</p>
  678. <p class="text-sm text-gray-600">内容审核员</p>
  679. </div>
  680. <div class="text-right">
  681. <p class="text-sm font-medium text-gray-600">¥4,200</p>
  682. <p class="text-xs text-gray-500">2023-05-01 至 2023-07-31</p>
  683. </div>
  684. </div>
  685. <p class="text-sm text-gray-600 mt-2">负责平台用户生成内容的审核工作,识别违规信息;参与内容安全策略讨论;定期整理审核数据并提交报告。</p>
  686. </div>
  687. </div>
  688. <!-- 历史工作2 -->
  689. <div class="flex">
  690. <div class="flex flex-col items-center mr-3">
  691. <div class="w-3 h-3 rounded-full bg-gray-400"></div>
  692. </div>
  693. <div class="flex-1">
  694. <div class="flex justify-between items-start">
  695. <div>
  696. <p class="font-medium text-gray-800">字节跳动</p>
  697. <p class="text-sm text-gray-600">数据录入员</p>
  698. </div>
  699. <div class="text-right">
  700. <p class="text-sm font-medium text-gray-600">¥3,800</p>
  701. <p class="text-xs text-gray-500">2023-02-01 至 2023-04-30</p>
  702. </div>
  703. </div>
  704. <p class="text-sm text-gray-600 mt-2">负责数据录入和校对工作,确保数据准确性;参与数据质量检查流程;协助团队完成数据整理任务。</p>
  705. </div>
  706. </div>
  707. </div>
  708. </div>
  709. <!-- 新增:个人征信截图 -->
  710. <div class="card bg-white p-4 mb-4">
  711. <h3 class="font-semibold text-gray-700 mb-3">个人征信信息</h3>
  712. <div class="space-y-3">
  713. <div class="flex items-center justify-between p-3 bg-gray-50 rounded-lg">
  714. <div class="flex items-center">
  715. <i class="fas fa-file-invoice text-orange-500 mr-3"></i>
  716. <div>
  717. <p class="text-sm font-medium text-gray-800">个人征信报告截图</p>
  718. <p class="text-xs text-gray-500">更新时间: 2023-11-20</p>
  719. </div>
  720. </div>
  721. <div class="flex space-x-2">
  722. <button class="text-blue-500 text-sm">
  723. <i class="fas fa-eye mr-1"></i>预览
  724. </button>
  725. <button class="text-green-500 text-sm">
  726. <i class="fas fa-download mr-1"></i>下载
  727. </button>
  728. </div>
  729. </div>
  730. </div>
  731. </div>
  732. <!-- 视频功能 -->
  733. <div class="card bg-white p-4 mb-4">
  734. <h3 class="font-semibold text-gray-700 mb-3">工作视频</h3>
  735. <div class="space-y-3">
  736. <div class="flex items-center justify-between p-3 bg-gray-50 rounded-lg">
  737. <div class="flex items-center">
  738. <i class="fas fa-video text-blue-500 mr-3"></i>
  739. <div>
  740. <p class="text-sm font-medium text-gray-800">工作环境视频</p>
  741. <p class="text-xs text-gray-500">时长: 2分30秒</p>
  742. </div>
  743. </div>
  744. <div class="flex space-x-2">
  745. <button class="text-blue-500 text-sm">
  746. <i class="fas fa-play mr-1"></i>查看
  747. </button>
  748. <button class="text-green-500 text-sm">
  749. <i class="fas fa-download mr-1"></i>下载
  750. </button>
  751. </div>
  752. </div>
  753. <div class="flex items-center justify-between p-3 bg-gray-50 rounded-lg">
  754. <div class="flex items-center">
  755. <i class="fas fa-video text-green-500 mr-3"></i>
  756. <div>
  757. <p class="text-sm font-medium text-gray-800">工作流程演示</p>
  758. <p class="text-xs text-gray-500">时长: 1分45秒</p>
  759. </div>
  760. </div>
  761. <div class="flex space-x-2">
  762. <button class="text-blue-500 text-sm">
  763. <i class="fas fa-play mr-1"></i>查看
  764. </button>
  765. <button class="text-green-500 text-sm">
  766. <i class="fas fa-download mr-1"></i>下载
  767. </button>
  768. </div>
  769. </div>
  770. </div>
  771. </div>
  772. <!-- 操作按钮 -->
  773. <div class="flex space-x-3">
  774. <button class="flex-1 bg-blue-500 text-white py-3 rounded-lg font-medium">
  775. <i class="fas fa-phone mr-2"></i>联系
  776. </button>
  777. <button class="flex-1 bg-gray-100 text-gray-800 py-3 rounded-lg font-medium">
  778. <i class="fas fa-edit mr-2"></i>编辑
  779. </button>
  780. </div>
  781. </div>
  782. </div>
  783. <!-- 底部导航 -->
  784. <div class="tab-bar">
  785. <div class="tab-item">
  786. <i class="fas fa-home text-lg mb-1"></i>
  787. <span>首页</span>
  788. </div>
  789. <div class="tab-item active">
  790. <i class="fas fa-user-friends text-lg mb-1"></i>
  791. <span>人才</span>
  792. </div>
  793. <div class="tab-item">
  794. <i class="fas fa-chart-bar text-lg mb-1"></i>
  795. <span>数据</span>
  796. </div>
  797. <div class="tab-item">
  798. <i class="fas fa-user text-lg mb-1"></i>
  799. <span>我的</span>
  800. </div>
  801. </div>
  802. </div>
  803. </div>
  804. <!-- 页面5: 数据统计页 -->
  805. <div class="flex flex-col items-center">
  806. <h2 class="text-xl font-semibold text-gray-700 mb-4">数据统计页</h2>
  807. <div class="mobile-frame">
  808. <div class="status-bar">
  809. <span>9:41</span>
  810. <div class="flex space-x-1">
  811. <i class="fas fa-signal"></i>
  812. <i class="fas fa-wifi"></i>
  813. <i class="fas fa-battery-three-quarters"></i>
  814. </div>
  815. </div>
  816. <div class="h-[calc(100%-104px)] overflow-y-auto p-4">
  817. <!-- 时间筛选 -->
  818. <div class="flex justify-between items-center mb-4">
  819. <h3 class="font-semibold text-gray-700">数据统计</h3>
  820. <div class="flex items-center bg-gray-100 rounded-lg px-3 py-1">
  821. <span class="text-sm text-gray-700 mr-2">2023年11月</span>
  822. <i class="fas fa-chevron-down text-gray-500"></i>
  823. </div>
  824. </div>
  825. <!-- 统计卡片 -->
  826. <div class="grid grid-cols-2 gap-3 mb-4">
  827. <div class="stat-card">
  828. <p class="text-sm text-gray-600 mb-2">在职人数</p>
  829. <p class="text-2xl font-bold text-gray-800">24</p>
  830. <p class="text-xs text-green-500 mt-1">↑ 比上月增加2人</p>
  831. </div>
  832. <div class="stat-card">
  833. <p class="text-sm text-gray-600 mb-2">平均薪资</p>
  834. <p class="text-2xl font-bold text-gray-800">¥4,650</p>
  835. <p class="text-xs text-green-500 mt-1">↑ 比上月增加¥150</p>
  836. </div>
  837. <div class="stat-card">
  838. <p class="text-sm text-gray-600 mb-2">在职率</p>
  839. <p class="text-2xl font-bold text-gray-800">92%</p>
  840. <p class="text-xs text-green-500 mt-1">↑ 比上月提升3%</p>
  841. </div>
  842. <div class="stat-card">
  843. <p class="text-sm text-gray-600 mb-2">新增人数</p>
  844. <p class="text-2xl font-bold text-gray-800">3</p>
  845. <p class="text-xs text-red-500 mt-1">↓ 比上月减少1人</p>
  846. </div>
  847. </div>
  848. <!-- 残疾类型分布 -->
  849. <div class="card bg-white p-4 mb-4">
  850. <h3 class="font-semibold text-gray-700 mb-3">残疾类型分布</h3>
  851. <div class="chart-container mb-2">
  852. <div class="chart-bar" style="left: 20px; height: 160px;"></div>
  853. <div class="chart-bar" style="left: 70px; height: 120px;"></div>
  854. <div class="chart-bar" style="left: 120px; height: 80px;"></div>
  855. <div class="chart-bar" style="left: 170px; height: 60px;"></div>
  856. <div class="chart-bar" style="left: 220px; height: 40px;"></div>
  857. <div class="chart-bar" style="left: 270px; height: 30px;"></div>
  858. </div>
  859. <div class="flex justify-between text-xs text-gray-500">
  860. <span>肢体</span>
  861. <span>听力</span>
  862. <span>视力</span>
  863. <span>言语</span>
  864. <span>智力</span>
  865. <span>精神</span>
  866. </div>
  867. </div>
  868. <!-- 性别分布 -->
  869. <div class="card bg-white p-4 mb-4">
  870. <h3 class="font-semibold text-gray-700 mb-3">性别分布</h3>
  871. <div class="bar-chart">
  872. <div class="bar-container">
  873. <div class="bar-value">16人</div>
  874. <div class="bar" style="height: 100px; background-color: #3b82f6;"></div>
  875. <div class="bar-label">男性 (67%)</div>
  876. </div>
  877. <div class="bar-container">
  878. <div class="bar-value">8人</div>
  879. <div class="bar" style="height: 50px; background-color: #ec4899;"></div>
  880. <div class="bar-label">女性 (33%)</div>
  881. </div>
  882. </div>
  883. </div>
  884. <!-- 年龄分布 -->
  885. <div class="card bg-white p-4 mb-4">
  886. <h3 class="font-semibold text-gray-700 mb-3">年龄分布</h3>
  887. <div class="pie-chart"></div>
  888. <div class="pie-legend">
  889. <div class="legend-item">
  890. <div class="legend-color" style="background-color: #3b82f6;"></div>
  891. <span>25岁以下 (40%)</span>
  892. </div>
  893. <div class="legend-item">
  894. <div class="legend-color" style="background-color: #10b981;"></div>
  895. <span>25-35岁 (25%)</span>
  896. </div>
  897. <div class="legend-item">
  898. <div class="legend-color" style="background-color: #f59e0b;"></div>
  899. <span>35-45岁 (20%)</span>
  900. </div>
  901. <div class="legend-item">
  902. <div class="legend-color" style="background-color: #8b5cf6;"></div>
  903. <span>45岁以上 (15%)</span>
  904. </div>
  905. </div>
  906. </div>
  907. <!-- 户籍省份分布 -->
  908. <div class="card bg-white p-4 mb-4">
  909. <h3 class="font-semibold text-gray-700 mb-3">户籍省份分布</h3>
  910. <div class="space-y-3">
  911. <div>
  912. <div class="flex justify-between text-sm mb-1">
  913. <span class="text-gray-700">广东省</span>
  914. <span class="text-gray-500">8人</span>
  915. </div>
  916. <div class="progress-bar">
  917. <div class="progress-fill bg-blue-500" style="width: 33%"></div>
  918. </div>
  919. </div>
  920. <div>
  921. <div class="flex justify-between text-sm mb-1">
  922. <span class="text-gray-700">浙江省</span>
  923. <span class="text-gray-500">6人</span>
  924. </div>
  925. <div class="progress-bar">
  926. <div class="progress-fill bg-green-500" style="width: 25%"></div>
  927. </div>
  928. </div>
  929. <div>
  930. <div class="flex justify-between text-sm mb-1">
  931. <span class="text-gray-700">江苏省</span>
  932. <span class="text-gray-500">4人</span>
  933. </div>
  934. <div class="progress-bar">
  935. <div class="progress-fill bg-yellow-500" style="width: 17%"></div>
  936. </div>
  937. </div>
  938. <div>
  939. <div class="flex justify-between text-sm mb-1">
  940. <span class="text-gray-700">山东省</span>
  941. <span class="text-gray-500">3人</span>
  942. </div>
  943. <div class="progress-bar">
  944. <div class="progress-fill bg-purple-500" style="width: 12%"></div>
  945. </div>
  946. </div>
  947. <div>
  948. <div class="flex justify-between text-sm mb-1">
  949. <span class="text-gray-700">四川省</span>
  950. <span class="text-gray-500">2人</span>
  951. </div>
  952. <div class="progress-bar">
  953. <div class="progress-fill bg-pink-500" style="width: 8%"></div>
  954. </div>
  955. </div>
  956. <div>
  957. <div class="flex justify-between text-sm mb-1">
  958. <span class="text-gray-700">湖北省</span>
  959. <span class="text-gray-500">1人</span>
  960. </div>
  961. <div class="progress-bar">
  962. <div class="progress-fill bg-indigo-500" style="width: 4%"></div>
  963. </div>
  964. </div>
  965. </div>
  966. </div>
  967. <!-- 在职状态统计 -->
  968. <div class="card bg-white p-4 mb-4">
  969. <h3 class="font-semibold text-gray-700 mb-3">在职状态统计</h3>
  970. <div class="flex items-center justify-center">
  971. <div class="w-32 h-32 rounded-full border-8 border-blue-500 border-t-transparent transform -rotate-45"></div>
  972. <div class="ml-6">
  973. <div class="flex items-center mb-2">
  974. <div class="w-3 h-3 rounded-full bg-blue-500 mr-2"></div>
  975. <span class="text-sm text-gray-700">在职: 24人 (75%)</span>
  976. </div>
  977. <div class="flex items-center mb-2">
  978. <div class="w-3 h-3 rounded-full bg-yellow-500 mr-2"></div>
  979. <span class="text-sm text-gray-700">待入职: 5人 (16%)</span>
  980. </div>
  981. <div class="flex items-center">
  982. <div class="w-3 h-3 rounded-full bg-red-500 mr-2"></div>
  983. <span class="text-sm text-gray-700">离职: 3人 (9%)</span>
  984. </div>
  985. </div>
  986. </div>
  987. </div>
  988. <!-- 薪资分布 -->
  989. <div class="card bg-white p-4">
  990. <h3 class="font-semibold text-gray-700 mb-3">薪资分布</h3>
  991. <div class="space-y-3">
  992. <div>
  993. <div class="flex justify-between text-sm mb-1">
  994. <span class="text-gray-700">¥4,000-¥4,500</span>
  995. <span class="text-gray-500">8人</span>
  996. </div>
  997. <div class="progress-bar">
  998. <div class="progress-fill bg-blue-500" style="width: 40%"></div>
  999. </div>
  1000. </div>
  1001. <div>
  1002. <div class="flex justify-between text-sm mb-1">
  1003. <span class="text-gray-700">¥4,500-¥5,000</span>
  1004. <span class="text-gray-500">12人</span>
  1005. </div>
  1006. <div class="progress-bar">
  1007. <div class="progress-fill bg-green-500" style="width: 60%"></div>
  1008. </div>
  1009. </div>
  1010. <div>
  1011. <div class="flex justify-between text-sm mb-1">
  1012. <span class="text-gray-700">¥5,000-¥5,500</span>
  1013. <span class="text-gray-500">4人</span>
  1014. </div>
  1015. <div class="progress-bar">
  1016. <div class="progress-fill bg-yellow-500" style="width: 20%"></div>
  1017. </div>
  1018. </div>
  1019. </div>
  1020. </div>
  1021. </div>
  1022. <!-- 底部导航 -->
  1023. <div class="tab-bar">
  1024. <div class="tab-item">
  1025. <i class="fas fa-home text-lg mb-1"></i>
  1026. <span>首页</span>
  1027. </div>
  1028. <div class="tab-item">
  1029. <i class="fas fa-user-friends text-lg mb-1"></i>
  1030. <span>人才</span>
  1031. </div>
  1032. <div class="tab-item active">
  1033. <i class="fas fa-chart-bar text-lg mb-1"></i>
  1034. <span>数据</span>
  1035. </div>
  1036. <div class="tab-item">
  1037. <i class="fas fa-user text-lg mb-1"></i>
  1038. <span>我的</span>
  1039. </div>
  1040. </div>
  1041. </div>
  1042. </div>
  1043. <!-- 页面6: 订单管理页 -->
  1044. <div class="flex flex-col items-center">
  1045. <h2 class="text-xl font-semibold text-gray-700 mb-4">订单管理页</h2>
  1046. <div class="mobile-frame">
  1047. <div class="status-bar">
  1048. <span>9:41</span>
  1049. <div class="flex space-x-1">
  1050. <i class="fas fa-signal"></i>
  1051. <i class="fas fa-wifi"></i>
  1052. <i class="fas fa-battery-three-quarters"></i>
  1053. </div>
  1054. </div>
  1055. <div class="h-[calc(100%-104px)] overflow-y-auto">
  1056. <!-- 订单筛选 -->
  1057. <div class="p-4 border-b border-gray-200">
  1058. <div class="flex space-x-2 overflow-x-auto pb-2">
  1059. <span class="bg-blue-100 text-blue-800 text-xs px-3 py-1 rounded-full whitespace-nowrap">全部订单</span>
  1060. <span class="bg-gray-100 text-gray-800 text-xs px-3 py-1 rounded-full whitespace-nowrap">进行中</span>
  1061. <span class="bg-gray-100 text-gray-800 text-xs px-3 py-1 rounded-full whitespace-nowrap">已完成</span>
  1062. <span class="bg-gray-100 text-gray-800 text-xs px-3 py-1 rounded-full whitespace-nowrap">已取消</span>
  1063. </div>
  1064. </div>
  1065. <!-- 订单列表 -->
  1066. <div class="p-4">
  1067. <div class="flex justify-between items-center mb-4">
  1068. <h3 class="font-semibold text-gray-700">订单列表</h3>
  1069. <button class="bg-blue-500 text-white text-xs px-3 py-1 rounded-lg">
  1070. <i class="fas fa-plus mr-1"></i>新建订单
  1071. </button>
  1072. </div>
  1073. <div class="space-y-4">
  1074. <!-- 订单卡片1 -->
  1075. <div class="card bg-white p-4">
  1076. <div class="flex justify-between items-start mb-3">
  1077. <div>
  1078. <h4 class="font-semibold text-gray-800">阿里巴巴2023-11</h4>
  1079. <p class="text-xs text-gray-500">2023-11-01 创建</p>
  1080. </div>
  1081. <span class="bg-green-100 text-green-800 text-xs px-2 py-1 rounded-full">进行中</span>
  1082. </div>
  1083. <div class="grid grid-cols-2 gap-3 text-sm mb-3">
  1084. <div>
  1085. <p class="text-gray-500">预计人数</p>
  1086. <p class="text-gray-800">30人</p>
  1087. </div>
  1088. <div>
  1089. <p class="text-gray-500">实际人数</p>
  1090. <p class="text-gray-800">24人</p>
  1091. </div>
  1092. <div>
  1093. <p class="text-gray-500">开始日期</p>
  1094. <p class="text-gray-800">2023-11-01</p>
  1095. </div>
  1096. <div>
  1097. <p class="text-gray-500">预计结束</p>
  1098. <p class="text-gray-800">2024-10-31</p>
  1099. </div>
  1100. </div>
  1101. <!-- 新增打卡数据统计 -->
  1102. <div class="grid grid-cols-3 gap-2 mb-3">
  1103. <div class="bg-blue-50 rounded-lg p-2 text-center">
  1104. <p class="text-xs text-gray-600">本月打卡</p>
  1105. <p class="text-sm font-bold text-gray-800">24/30</p>
  1106. <p class="text-xs text-gray-500">80%</p>
  1107. </div>
  1108. <div class="bg-green-50 rounded-lg p-2 text-center">
  1109. <p class="text-xs text-gray-600">工资视频</p>
  1110. <p class="text-sm font-bold text-gray-800">22</p>
  1111. <p class="text-xs text-gray-500">已上传</p>
  1112. </div>
  1113. <div class="bg-purple-50 rounded-lg p-2 text-center">
  1114. <p class="text-xs text-gray-600">个税视频</p>
  1115. <p class="text-sm font-bold text-gray-800">20</p>
  1116. <p class="text-xs text-gray-500">已上传</p>
  1117. </div>
  1118. </div>
  1119. <div class="flex justify-between text-sm">
  1120. <button class="text-blue-500">
  1121. <i class="fas fa-eye mr-1"></i>查看详情
  1122. </button>
  1123. <button class="text-gray-500">
  1124. <i class="fas fa-download mr-1"></i>下载视频
  1125. </button>
  1126. </div>
  1127. </div>
  1128. <!-- 订单卡片2 -->
  1129. <div class="card bg-white p-4">
  1130. <div class="flex justify-between items-start mb-3">
  1131. <div>
  1132. <h4 class="font-semibold text-gray-800">腾讯科技2023-08</h4>
  1133. <p class="text-xs text-gray-500">2023-08-15 创建</p>
  1134. </div>
  1135. <span class="bg-blue-100 text-blue-800 text-xs px-2 py-1 rounded-full">已完成</span>
  1136. </div>
  1137. <div class="grid grid-cols-2 gap-3 text-sm mb-3">
  1138. <div>
  1139. <p class="text-gray-500">预计人数</p>
  1140. <p class="text-gray-800">20人</p>
  1141. </div>
  1142. <div>
  1143. <p class="text-gray-500">实际人数</p>
  1144. <p class="text-gray-800">18人</p>
  1145. </div>
  1146. <div>
  1147. <p class="text-gray-500">开始日期</p>
  1148. <p class="text-gray-800">2023-08-15</p>
  1149. </div>
  1150. <div>
  1151. <p class="text-gray-500">结束日期</p>
  1152. <p class="text-gray-800">2023-10-31</p>
  1153. </div>
  1154. </div>
  1155. <div class="flex justify-between text-sm">
  1156. <button class="text-blue-500">
  1157. <i class="fas fa-eye mr-1"></i>查看详情
  1158. </button>
  1159. <button class="text-gray-500">
  1160. <i class="fas fa-chart-bar mr-1"></i>数据报告
  1161. </button>
  1162. </div>
  1163. </div>
  1164. <!-- 订单卡片3 -->
  1165. <div class="card bg-white p-4">
  1166. <div class="flex justify-between items-start mb-3">
  1167. <div>
  1168. <h4 class="font-semibold text-gray-800">字节跳动2023-12</h4>
  1169. <p class="text-xs text-gray-500">2023-11-20 创建</p>
  1170. </div>
  1171. <span class="bg-yellow-100 text-yellow-800 text-xs px-2 py-1 rounded-full">待开始</span>
  1172. </div>
  1173. <div class="grid grid-cols-2 gap-3 text-sm mb-3">
  1174. <div>
  1175. <p class="text-gray-500">预计人数</p>
  1176. <p class="text-gray-800">25人</p>
  1177. </div>
  1178. <div>
  1179. <p class="text-gray-500">实际人数</p>
  1180. <p class="text-gray-800">5人</p>
  1181. </div>
  1182. <div>
  1183. <p class="text-gray-500">预计开始</p>
  1184. <p class="text-gray-800">2023-12-01</p>
  1185. </div>
  1186. <div>
  1187. <p class="text-gray-500">预计结束</p>
  1188. <p class="text-gray-800">2024-11-30</p>
  1189. </div>
  1190. </div>
  1191. <div class="flex justify-between text-sm">
  1192. <button class="text-blue-500">
  1193. <i class="fas fa-eye mr-1"></i>查看详情
  1194. </button>
  1195. <button class="text-gray-500">
  1196. <i class="fas fa-edit mr-1"></i>编辑
  1197. </button>
  1198. </div>
  1199. </div>
  1200. </div>
  1201. </div>
  1202. </div>
  1203. <!-- 底部导航 -->
  1204. <div class="tab-bar">
  1205. <div class="tab-item">
  1206. <i class="fas fa-home text-lg mb-1"></i>
  1207. <span>首页</span>
  1208. </div>
  1209. <div class="tab-item">
  1210. <i class="fas fa-user-friends text-lg mb-1"></i>
  1211. <span>人才</span>
  1212. </div>
  1213. <div class="tab-item">
  1214. <i class="fas fa-chart-bar text-lg mb-1"></i>
  1215. <span>数据</span>
  1216. </div>
  1217. <div class="tab-item">
  1218. <i class="fas fa-user text-lg mb-1"></i>
  1219. <span>我的</span>
  1220. </div>
  1221. </div>
  1222. </div>
  1223. </div>
  1224. <!-- 页面7: 企业设置页 -->
  1225. <div class="flex flex-col items-center">
  1226. <h2 class="text-xl font-semibold text-gray-700 mb-4">企业设置页</h2>
  1227. <div class="mobile-frame">
  1228. <div class="status-bar">
  1229. <span>9:41</span>
  1230. <div class="flex space-x-1">
  1231. <i class="fas fa-signal"></i>
  1232. <i class="fas fa-wifi"></i>
  1233. <i class="fas fa-battery-three-quarters"></i>
  1234. </div>
  1235. </div>
  1236. <div class="h-[calc(100%-104px)] overflow-y-auto">
  1237. <!-- 企业信息 -->
  1238. <div class="p-4 border-b border-gray-200">
  1239. <div class="flex items-center mb-4">
  1240. <div class="w-16 h-16 rounded-full bg-blue-100 flex items-center justify-center mr-4">
  1241. <i class="fas fa-building text-blue-500 text-2xl"></i>
  1242. </div>
  1243. <div>
  1244. <h3 class="font-semibold text-gray-800">阿里巴巴集团</h3>
  1245. <p class="text-sm text-gray-500">企业账号</p>
  1246. </div>
  1247. </div>
  1248. <div class="grid grid-cols-3 gap-3 text-center">
  1249. <div>
  1250. <p class="text-xl font-bold text-gray-800">24</p>
  1251. <p class="text-xs text-gray-500">在职人员</p>
  1252. </div>
  1253. <div>
  1254. <p class="text-xl font-bold text-gray-800">3</p>
  1255. <p class="text-xs text-gray-500">进行中订单</p>
  1256. </div>
  1257. <div>
  1258. <p class="text-xl font-bold text-gray-800">12</p>
  1259. <p class="text-xs text-gray-500">累计订单</p>
  1260. </div>
  1261. </div>
  1262. </div>
  1263. <!-- 功能列表 -->
  1264. <div class="p-4">
  1265. <div class="space-y-1 mb-6">
  1266. <div class="flex items-center justify-between p-3 rounded-lg hover:bg-gray-50">
  1267. <div class="flex items-center">
  1268. <div class="w-10 h-10 rounded-full bg-blue-100 flex items-center justify-center mr-3">
  1269. <i class="fas fa-user text-blue-500"></i>
  1270. </div>
  1271. <span class="text-gray-700">账号信息</span>
  1272. </div>
  1273. <i class="fas fa-chevron-right text-gray-400"></i>
  1274. </div>
  1275. <div class="flex items-center justify-between p-3 rounded-lg hover:bg-gray-50">
  1276. <div class="flex items-center">
  1277. <div class="w-10 h-10 rounded-full bg-green-100 flex items-center justify-center mr-3">
  1278. <i class="fas fa-shield-alt text-green-500"></i>
  1279. </div>
  1280. <span class="text-gray-700">安全设置</span>
  1281. </div>
  1282. <i class="fas fa-chevron-right text-gray-400"></i>
  1283. </div>
  1284. <div class="flex items-center justify-between p-3 rounded-lg hover:bg-gray-50">
  1285. <div class="flex items-center">
  1286. <div class="w-10 h-10 rounded-full bg-purple-100 flex items-center justify-center mr-3">
  1287. <i class="fas fa-bell text-purple-500"></i>
  1288. </div>
  1289. <span class="text-gray-700">消息通知</span>
  1290. </div>
  1291. <i class="fas fa-chevron-right text-gray-400"></i>
  1292. </div>
  1293. </div>
  1294. <div class="space-y-1 mb-6">
  1295. <div class="flex items-center justify-between p-3 rounded-lg hover:bg-gray-50">
  1296. <div class="flex items-center">
  1297. <div class="w-10 h-10 rounded-full bg-yellow-100 flex items-center justify-center mr-3">
  1298. <i class="fas fa-question-circle text-yellow-500"></i>
  1299. </div>
  1300. <span class="text-gray-700">帮助中心</span>
  1301. </div>
  1302. <i class="fas fa-chevron-right text-gray-400"></i>
  1303. </div>
  1304. <div class="flex items-center justify-between p-3 rounded-lg hover:bg-gray-50">
  1305. <div class="flex items-center">
  1306. <div class="w-10 h-10 rounded-full bg-indigo-100 flex items-center justify-center mr-3">
  1307. <i class="fas fa-file-alt text-indigo-500"></i>
  1308. </div>
  1309. <span class="text-gray-700">用户协议</span>
  1310. </div>
  1311. <i class="fas fa-chevron-right text-gray-400"></i>
  1312. </div>
  1313. <div class="flex items-center justify-between p-3 rounded-lg hover:bg-gray-50">
  1314. <div class="flex items-center">
  1315. <div class="w-10 h-10 rounded-full bg-pink-100 flex items-center justify-center mr-3">
  1316. <i class="fas fa-lock text-pink-500"></i>
  1317. </div>
  1318. <span class="text-gray-700">隐私政策</span>
  1319. </div>
  1320. <i class="fas fa-chevron-right text-gray-400"></i>
  1321. </div>
  1322. </div>
  1323. <div class="space-y-1">
  1324. <div class="flex items-center justify-between p-3 rounded-lg hover:bg-gray-50">
  1325. <div class="flex items-center">
  1326. <div class="w-10 h-10 rounded-full bg-red-100 flex items-center justify-center mr-3">
  1327. <i class="fas fa-sign-out-alt text-red-500"></i>
  1328. </div>
  1329. <span class="text-gray-700">退出登录</span>
  1330. </div>
  1331. </div>
  1332. </div>
  1333. </div>
  1334. </div>
  1335. <!-- 底部导航 -->
  1336. <div class="tab-bar">
  1337. <div class="tab-item">
  1338. <i class="fas fa-home text-lg mb-1"></i>
  1339. <span>首页</span>
  1340. </div>
  1341. <div class="tab-item">
  1342. <i class="fas fa-user-friends text-lg mb-1"></i>
  1343. <span>人才</span>
  1344. </div>
  1345. <div class="tab-item">
  1346. <i class="fas fa-chart-bar text-lg mb-1"></i>
  1347. <span>数据</span>
  1348. </div>
  1349. <div class="tab-item active">
  1350. <i class="fas fa-user text-lg mb-1"></i>
  1351. <span>我的</span>
  1352. </div>
  1353. </div>
  1354. </div>
  1355. </div>
  1356. <!-- 新增页面7: 视频查看下载页 -->
  1357. <div class="flex flex-col items-center">
  1358. <h2 class="text-xl font-semibold text-gray-700 mb-4">视频查看下载页</h2>
  1359. <div class="mobile-frame">
  1360. <div class="status-bar">
  1361. <span>9:41</span>
  1362. <div class="flex space-x-1">
  1363. <i class="fas fa-signal"></i>
  1364. <i class="fas fa-wifi"></i>
  1365. <i class="fas fa-battery-three-quarters"></i>
  1366. </div>
  1367. </div>
  1368. <div class="h-[calc(100%-104px)] overflow-y-auto">
  1369. <!-- 顶部信息 -->
  1370. <div class="p-4 border-b border-gray-200">
  1371. <div class="flex items-center justify-between">
  1372. <div>
  1373. <h3 class="font-semibold text-gray-800">阿里巴巴2023-11</h3>
  1374. <p class="text-sm text-gray-500">打卡视频管理</p>
  1375. </div>
  1376. <button class="text-blue-500 text-sm">
  1377. <i class="fas fa-download mr-1"></i>批量下载
  1378. </button>
  1379. </div>
  1380. </div>
  1381. <!-- 视频分类 -->
  1382. <div class="p-4 border-b border-gray-200">
  1383. <div class="flex space-x-2 overflow-x-auto pb-2">
  1384. <span class="bg-blue-100 text-blue-800 text-xs px-3 py-1 rounded-full whitespace-nowrap">全部视频</span>
  1385. <span class="bg-gray-100 text-gray-800 text-xs px-3 py-1 rounded-full whitespace-nowrap">工资视频</span>
  1386. <span class="bg-gray-100 text-gray-800 text-xs px-3 py-1 rounded-full whitespace-nowrap">个税视频</span>
  1387. <span class="bg-gray-100 text-gray-800 text-xs px-3 py-1 rounded-full whitespace-nowrap">打卡视频</span>
  1388. </div>
  1389. </div>
  1390. <!-- 视频列表 -->
  1391. <div class="p-4">
  1392. <div class="flex justify-between items-center mb-4">
  1393. <h3 class="font-semibold text-gray-700">视频列表 (12)</h3>
  1394. <div class="flex space-x-2">
  1395. <button class="text-gray-500">
  1396. <i class="fas fa-sort"></i>
  1397. </button>
  1398. <button class="text-gray-500">
  1399. <i class="fas fa-filter"></i>
  1400. </button>
  1401. </div>
  1402. </div>
  1403. <div class="space-y-4">
  1404. <!-- 视频项1 -->
  1405. <div class="card bg-white p-4">
  1406. <div class="flex justify-between items-start mb-3">
  1407. <div>
  1408. <h4 class="font-semibold text-gray-800">张明 - 工资视频</h4>
  1409. <p class="text-xs text-gray-500">2023-11-25 上传</p>
  1410. </div>
  1411. <span class="bg-green-100 text-green-800 text-xs px-2 py-1 rounded-full">已验证</span>
  1412. </div>
  1413. <div class="flex items-center mb-3">
  1414. <div class="w-16 h-16 bg-gray-200 rounded-lg flex items-center justify-center mr-3">
  1415. <i class="fas fa-play text-gray-500"></i>
  1416. </div>
  1417. <div class="flex-1">
  1418. <p class="text-sm text-gray-700">工资发放确认视频</p>
  1419. <p class="text-xs text-gray-500">时长: 00:45 · 大小: 12.3MB</p>
  1420. </div>
  1421. </div>
  1422. <div class="flex justify-between text-sm">
  1423. <button class="text-blue-500">
  1424. <i class="fas fa-play mr-1"></i>播放
  1425. </button>
  1426. <button class="text-green-500">
  1427. <i class="fas fa-download mr-1"></i>下载
  1428. </button>
  1429. <button class="text-gray-500">
  1430. <i class="fas fa-share mr-1"></i>分享
  1431. </button>
  1432. </div>
  1433. </div>
  1434. <!-- 视频项2 -->
  1435. <div class="card bg-white p-4">
  1436. <div class="flex justify-between items-start mb-3">
  1437. <div>
  1438. <h4 class="font-semibold text-gray-800">李小红 - 个税视频</h4>
  1439. <p class="text-xs text-gray-500">2023-11-24 上传</p>
  1440. </div>
  1441. <span class="bg-green-100 text-green-800 text-xs px-2 py-1 rounded-full">已验证</span>
  1442. </div>
  1443. <div class="flex items-center mb-3">
  1444. <div class="w-16 h-16 bg-gray-200 rounded-lg flex items-center justify-center mr-3">
  1445. <i class="fas fa-play text-gray-500"></i>
  1446. </div>
  1447. <div class="flex-1">
  1448. <p class="text-sm text-gray-700">个税申报确认视频</p>
  1449. <p class="text-xs text-gray-500">时长: 00:38 · 大小: 10.8MB</p>
  1450. </div>
  1451. </div>
  1452. <div class="flex justify-between text-sm">
  1453. <button class="text-blue-500">
  1454. <i class="fas fa-play mr-1"></i>播放
  1455. </button>
  1456. <button class="text-green-500">
  1457. <i class="fas fa-download mr-1"></i>下载
  1458. </button>
  1459. <button class="text-gray-500">
  1460. <i class="fas fa-share mr-1"></i>分享
  1461. </button>
  1462. </div>
  1463. </div>
  1464. <!-- 视频项3 -->
  1465. <div class="card bg-white p-4">
  1466. <div class="flex justify-between items-start mb-3">
  1467. <div>
  1468. <h4 class="font-semibold text-gray-800">王强 - 打卡视频</h4>
  1469. <p class="text-xs text-gray-500">2023-11-23 上传</p>
  1470. </div>
  1471. <span class="bg-yellow-100 text-yellow-800 text-xs px-2 py-1 rounded-full">待审核</span>
  1472. </div>
  1473. <div class="flex items-center mb-3">
  1474. <div class="w-16 h-16 bg-gray-200 rounded-lg flex items-center justify-center mr-3">
  1475. <i class="fas fa-play text-gray-500"></i>
  1476. </div>
  1477. <div class="flex-1">
  1478. <p class="text-sm text-gray-700">上班打卡记录视频</p>
  1479. <p class="text-xs text-gray-500">时长: 00:28 · 大小: 8.5MB</p>
  1480. </div>
  1481. </div>
  1482. <div class="flex justify-between text-sm">
  1483. <button class="text-blue-500">
  1484. <i class="fas fa-play mr-1"></i>播放
  1485. </button>
  1486. <button class="text-green-500">
  1487. <i class="fas fa-download mr-1"></i>下载
  1488. </button>
  1489. <button class="text-gray-500">
  1490. <i class="fas fa-share mr-1"></i>分享
  1491. </button>
  1492. </div>
  1493. </div>
  1494. </div>
  1495. </div>
  1496. </div>
  1497. <!-- 底部导航 -->
  1498. <div class="tab-bar">
  1499. <div class="tab-item">
  1500. <i class="fas fa-home text-lg mb-1"></i>
  1501. <span>首页</span>
  1502. </div>
  1503. <div class="tab-item">
  1504. <i class="fas fa-user-friends text-lg mb-1"></i>
  1505. <span>人才</span>
  1506. </div>
  1507. <div class="tab-item active">
  1508. <i class="fas fa-chart-bar text-lg mb-1"></i>
  1509. <span>数据</span>
  1510. </div>
  1511. <div class="tab-item">
  1512. <i class="fas fa-user text-lg mb-1"></i>
  1513. <span>我的</span>
  1514. </div>
  1515. </div>
  1516. </div>
  1517. </div>
  1518. </div>
  1519. <div class="mt-12 text-center text-gray-600">
  1520. <p>用人方小程序完整原型设计 - 基于数据库表结构设计的所有主要页面</p>
  1521. <p class="mt-2">数据来源: allin_2025-11-25.sql</p>
  1522. <p class="mt-2">功能优化:打卡数据统计、薪资信息简化、历史工作内容展示、视频查看下载</p>
  1523. </div>
  1524. </div>
  1525. </body>
  1526. </html>