vue3实现招聘求职类app微网站ui原型图h5代码
代码语言:html
所属分类:其他
代码描述:vue3实现招聘求职类app微网站ui原型图h5代码
代码标签: vue 招聘 求职 app 微网站 ui 原型图 h5 代码
下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开
<!DOCTYPE html> <html lang="zh-CN"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Vue3 BOSS直聘 App</title> <script type="text/javascript" src="//repo.bfw.wiki/bfwrepo/js/vue3.2.22.js"></script> <style> :root { --primary-color: #15c2b1; --bg-color: #f8f8f8; --text-color: #333; --text-secondary-color: #666; --text-light-color: #999; --border-color: #eee; --white: #fff; } body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif; margin: 0; background-color: var(--bg-color); color: var(--text-color); font-size: 14px; } #app { max-width: 480px; margin: 0 auto; background-color: var(--white); min-height: 100vh; position: relative; padding-bottom: 60px; } .page-container { padding: 10px; } .icon { width: 1em; height: 1em; vertical-align: -0.15em; fill: currentColor; overflow: hidden; } /* Bottom Nav */ .bottom-nav { position: fixed; bottom: 0; left: 0; right: 0; max-width: 480px; margin: 0 auto; height: 55px; background-color: var(--white); border-top: 1px solid var(--border-color); display: flex; justify-content: space-around; align-items: center; z-index: 100; } .nav-item { cursor: pointer; text-align: center; color: var(--text-secondary-color); display: flex; flex-direction: column; align-items: center; gap: 2px; } .nav-item .icon { font-size: 22px; } .nav-item.active { color: var(--primary-color); } .nav-item span { font-size: 10px; } /* Job Page */ .job-list { display: flex; flex-direction: column; gap: 10px; } .job-card { padding: 15px; border-bottom: 5px solid var(--bg-color); cursor: pointer; } .job-card-header { display: flex; justify-content: space-between; align-items: flex-start; } .job-title { font-size: 16px; font-weight: bold; } .job-salary { font-size: 16px; font-weight: bold; color: var(--primary-color); } .job-tags { margin: 8px 0; display: flex; gap: 8px; font-size: 12px; color: var(--text-secondary-color); } .job-company { display: flex; align-items: center; gap: 8px; font-size: 13px; } .job-company img { width: 20px; height: 20px; border-radius: 4px; } .job-recruiter { display: flex; align-items: center; gap: 8px; margin-top: 10px; } .recruiter-avatar { width: 30px; height: 30px; border-radius: 50%; } .recruiter-info { font-size: 13px; color: var(--text-secondary-color); } .recruiter-name { color: var(--text-color); } /* Job Detail Page */ .detail-page { padding-bottom: 70px; } /* Space for action bar */ .detail-header { padding: 15px; border-bottom: 10px solid var(--bg-color); } .detail-title { display: flex; justify-content: space-between; align-items: center; } .detail-title h2 { margin: 0; font-size: 22px; } .detail-salary { font-size: 20px; color: var(--primary-color); font-weight: bold; } .detail-tags { margin-top: 10px; } .detail-section { padding: 15px; border-bottom: 10px solid var(--bg-color); } .section-title { font-size: 16px; font-weight: bold; margin-bottom: 10px; } .detail-desc { line-height: 1.6; color: var(--text-secondary-color); } .company-card { display: flex; gap: 10px; align-items: center; } .company-card img { width: 50px; height: 50px; border-radius: 8px; } .company-info .name { font-weight: bold; } .company-info .meta { font-size: 12px; color: var(--text-light-color); } .recruiter-card { background: var(--bg-color); padding: 15px; border-radius: 8px; display: flex; justify-content: space-between; align-items: center; } .detail-action-bar { position: fixed; bottom: 0; left: 0; right: 0; max-width: 480px; margin: 0 auto; height: 60px; background: var(--white); border-top: 1px solid var(--border-color); display: flex; align-items: center; padding: 0 15px; z-index: 101; } .action-btn { flex: 1; padding: 12px; text-align: center; background: var(--primary-color); color: var(--white); border: none; border-radius: 8px; font-size: 16px; font-weight: bold; cursor: pointer; } .action-btn[disabled] { background-color: #ccc; } /* Messages & Chat Page */ .........完整代码请登录后点击上方下载按钮下载查看
网友评论0