请根据文档内容,提供给我完整的web前端项目VSCode代码,需要实现有首页,登录注册页,医生列表至少三个页面。首页按照文档内要求制作

时间: 2024-12-13 09:24:05 浏览: 13
好的,以下是根据文档内容提供的完整Web前端项目的VSCode代码结构,包含了首页、登录注册页和医生列表页。项目使用了Vue.js、ElementUI、Vue Router 和 Vuex。 ### 项目结构 ``` project-name/ ├── src/ │ ├── assets/ │ │ └── images/ │ │ └── doctor1.jpg │ │ └── doctor2.jpg │ │ └── ... │ ├── components/ │ │ ├── AppointmentForm.vue │ │ ├── AppointmentList.vue │ │ ├── DoctorCard.vue │ │ ├── DoctorList.vue │ │ ├── Header.vue │ │ ├── Footer.vue │ │ ├── Login.vue │ │ ├── Register.vue │ ├── router/ │ │ └── index.js │ ├── store/ │ │ └── index.js │ ├── App.vue │ └── main.js ├── public/ │ └── index.html ├── package.json └── README.md ``` ### 代码文件 #### `public/index.html` ```html <!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>预约挂号系统</title> </head> <body> <div id="app"></div> </body> </html> ``` #### `src/main.js` ```javascript import Vue from 'vue'; import App from './App.vue'; import router from './router'; import ElementUI from 'element-ui'; import 'element-ui/lib/theme-chalk/index.css'; import store from './store'; Vue.config.productionTip = false; Vue.use(ElementUI); new Vue({ el: '#app', router, store, render: h => h(App) }); ``` #### `src/App.vue` ```vue <template> <div id="app"> <Header /> <router-view /> <Footer /> </div> </template> <script> import Header from '@/components/Header.vue'; import Footer from '@/components/Footer.vue'; export default { name: 'App', components: { Header, Footer } }; </script> <style> #app { font-family: Avenir, Helvetica, Arial, sans-serif; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; text-align: center; color: #2c3e50; margin-top: 60px; } body { margin: 0; font-family: Arial, sans-serif; } </style> ``` #### `src/router/index.js` ```javascript import Vue from 'vue'; import Router from 'vue-router'; import Login from '../components/Login.vue'; import Register from '../components/Register.vue'; import DoctorList from '../components/DoctorList.vue'; import AppointmentForm from '../components/AppointmentForm.vue'; import AppointmentList from '../components/AppointmentList.vue'; Vue.use(Router); export default new Router({ routes: [ { path: '/', redirect: '/login' }, { path: '/login', component: Login }, { path: '/register', component: Register }, { path: '/doctors', component: DoctorList }, { path: '/appointment/:doctorId', component: AppointmentForm }, { path: '/appointments', component: AppointmentList } ] }); ``` #### `src/store/index.js` ```javascript import Vue from 'vue'; import Vuex from 'vuex'; Vue.use(Vuex); export default new Vuex.Store({ state: { user: null, appointments: [] }, mutations: { setUser(state, user) { state.user = user; }, addAppointment(state, appointment) { state.appointments.push(appointment); } }, actions: { login({ commit }, user) { commit('setUser', user); }, register({ commit }, user) { commit('setUser', user); }, createAppointment({ commit }, appointment) { commit('addAppointment', appointment); } } }); ``` #### `src/components/Header.vue` ```vue <template> <el-header> <div class="header-container"> <div class="logo">预约挂号</div> <el-menu mode="horizontal"> <el-menu-item> <router-link to="/login">用户登录</router-link> </el-menu-item> <el-menu-item> <router-link to="/register">注册</router-link> </el-menu-item> <el-menu-item> <router-link to="/appointment">预约挂号</router-link> </el-menu-item> <el-menu-item> <router-link to="/doctors">医生列表</router-link> </el-menu-item> </el-menu> </div> </el-header> </template> <script> export default { name: 'Header' }; </script> <style scoped> .header-container { display: flex; justify-content: space-between; align-items: center; padding: 0 20px; } .logo { font-size: 24px; font-weight: bold; } </style> ``` #### `src/components/Footer.vue` ```vue <template> <el-footer> <div class="footer-container"> <div class="address">地址:x市南泉路</div> <div class="contact">联系电话:123456780</div> <div class="clock">{{ currentTime }}</div> </div> </el-footer> </template> <script> export default { data() { return { currentTime: '' }; }, created() { this.updateTime(); setInterval(this.updateTime, 1000); }, methods: { updateTime() { const now = new Date(); this.currentTime = now.toLocaleString(); } } }; </script> <style scoped> .footer-container { display: flex; justify-content: space-between; align-items: center; padding: 10px 20px; } </style> ``` #### `src/components/Login.vue` ```vue <template> <div class="login-container"> <el-card class="box-card"> <h2>登录</h2> <el-form @submit.native.prevent="handleLogin"> <el-form-item label="用户名"> <el-input v-model="username"></el-input> </el-form-item> <el-form-item label="密码"> <el-input type="password" v-model="password"></el-input> </el-form-item> <el-button type="primary" native-type="submit">登录</el-button> </el-form> </el-card> </div> </template> <script> export default { data() { return { username: '', password: '' }; }, methods: { handleLogin() { const user = { username: this.username, password: this.password }; this.$store.dispatch('login', user); this.$router.push('/doctors'); } } }; </script> <style scoped> .login-container { display: flex; justify-content: center; align-items: center; height: 100vh; } .box-card { width: 400px; } </style> ``` #### `src/components/Register.vue` ```vue <template> <div class="register-container"> <el-card class="box-card"> <h2>注册</h2> <el-form @submit.native.prevent="handleRegister"> <el-form-item label="用户名"> <el-input v-model="username"></el-input> </el-form-item> <el-form-item label="密码"> <el-input type="password" v-model="password"></el-input> </el-form-item> <el-button type="primary" native-type="submit">注册</el-button> </el-form> </el-card> </div> </template> <script> export default { data() { return { username: '', password: '' }; }, methods: { handleRegister() { const user = { username: this.username, password: this.password }; this.$store.dispatch('register', user); this.$router.push('/login'); } } }; </script> <style scoped> .register-container { display: flex; justify-content: center; align-items: center; height: 100vh; } .box-card { width: 400px; } </style> ``` #### `src/components/DoctorList.vue` ```vue <template> <div class="doctor-list-container"> <h2>医生列表</h2> <el-row :gutter="20"> <el-col :span="8" v-for="doctor in doctors" :key="doctor.id"> <DoctorCard :doctor="doctor" /> </el-col> </el-row> </div> </template> <script> import DoctorCard from './DoctorCard.vue'; export default { components: { DoctorCard }, data() { return { doctors: [ { id: 1001, name: '刘梓豪', specialty: '心血管科', expertise: '高血压', schedule: ['周一上午', '周三上午'] }, { id: 1002, name: '杨人杰', specialty: '精神科', expertise: '儿童青少年心理', schedule: ['周二下午', '周四上午'] }, { id: 1003, name: '杨晓逸', specialty: '营养科', expertise: '临床营养', schedule: ['周二上午', '周五下午'] }, { id: 1004, name: '郑豪', specialty: '肝脏内科', expertise: '肾脏内科', schedule: ['周三下午', '周四下午'] }, { id: 1005, name: '张洋', specialty: '呼吸内科', expertise: '戒烟', schedule: ['周一上午', '周二上午'] }, { id: 1006, name: '左咏梅', specialty: '皮肤科', expertise: '皮肤管理', schedule: ['周三下午', '周五上午'] }, { id: 1007, name: '刘帅', specialty: '神经外科', expertise: '脊椎病', schedule: ['周二下午', '周四上午'] }, { id: 1008, name: '李斌', specialty: '耳鼻喉科', expertise: '耳鼻喉', schedule: ['周三上午', '周五上午'] } ] }; } }; </script> <style scoped> .doctor-list-container { padding: 20px; } </style> ``` #### `src/components/DoctorCard.vue` ```vue <template> <el-card class="box-card"> <div slot="header" class="clearfix"> <span>{{ doctor.name }}</span> <el-button style="float: right; padding: 3px 0" type="text" @click="viewDetails">查看详情</el-button> </div> <img :src="getDoctorImage(doctor.id)" alt="医生照片" style="width: 100%; max-height: 200px; object-fit: cover;"> <p><strong>科室:</strong>{{ doctor.specialty }}</p> <p><strong>擅长:</strong>{{ doctor.expertise }}</p> <p><strong>排班:</strong>{{ doctor.schedule.join(', ') }}</p> </el-card> </template> <script> export default { props: { doctor: Object }, methods: { viewDetails() { this.$router.push(`/appointment/${this.doctor.id}`); }, getDoctorImage(id) { return require(`@/assets/images/doctor${id}.jpg`); } } }; </script> <style scoped> .box-card { margin-bottom: 20px; } </style> ``` #### `src/components/AppointmentForm.vue` ```vue <template> <div class="appointment-form-container"> <h2>预约挂号</h2> <el-form @submit.native.prevent="handleSubmit"> <el-form-item label="姓名"> <el-input v-model="form.name"></el-input> </el-form-item> <el-form-item label="性别"> <el-select v-model="form.gender" placeholder="请选择性别"> <el-option label="男" value="male"></el-option> <el-option label="女" value="female"></el-option> </el-select> </el-form-item> <el-form-item label="年龄"> <el-input v-model.number="form.age"></el-input> </el-form-item> <el-form-item label="联系电话"> <el-input v-model="form.phone"></el-input> </el-form-item> <el-form-item label="预约时间"> <el-date-picker v-model="form.date" type="datetime" placeholder="选择日期时间"></el-date-picker> </el-form-item> <el-button type="primary" native-type="submit">提交</el-button> </el-form> </div> </template> <script> export default { data() { return { form: { name: '', gender: '', age: '', phone: '', date: '' } }; }, methods: { handleSubmit() { const appointment = { ...this.form, doctorId: this.$route.params.doctorId }; this.$store.dispatch('createAppointment', appointment); this.$router.push('/appointments'); } } }; </script> <style scoped> .appointment-form-container { display: flex; justify-content: center; align-items: center; height: 100vh; } .box-card { width: 400px; } </style> ``` #### `src/components/AppointmentList.vue` ```vue <template> <div class="appointment-list-container"> <h2>我的预约记录</h2> <el-table :data="appointments" stripe> <el-table-column prop="name" label="姓名"></el-table-column> <el-table-column prop="gender" label="性别"></el-table-column> <el-table-column prop="age" label="年龄"></el-table-column> <el-table-column prop="phone" label="联系电话"></el-table-column> <el-table-column prop="date" label="预约时间"></el-table-column> <el-table-column prop="doctorId" label="医生证号"></el-table-column> </el-table> </div> </template> <script> export default { computed: { appointments() { return this.$store.state.appointments; } } }; </script> <style scoped> .appointment-list-container { padding: 20px; } </style> ``` ### 运行项目 1. 安装依赖: ```sh npm install ``` 2. 启动开发服务器: ```sh npm run serve ``` 希望这些代码能够帮助你完成项目!如果有任何问题,请随时联系我。
阅读全文

相关推荐

最新推荐

recommend-type

web前端第三版习题参考答案_.docx.docx

网页由两部分构成:头部()和主体()。...这些都是Web前端开发中不可或缺的部分,对于理解和创建基本的网页内容至关重要。通过练习和实际操作,可以进一步巩固这些知识点,并为更深入的前端学习打下坚实的基础。
recommend-type

前端-代码走查模板.docx

在前端项目管理中,代码走查是一个至关重要的环节,它有助于规范开发行为,统一团队内的编码风格,并且能够提前发现并修复潜在的问题,提高代码质量和软件稳定性。代码走查不仅是一种质量保证手段,而且能够促进团队...
recommend-type

vscode使用官方C/C++插件无法进行代码格式化问题

在使用Visual Studio Code (VSCode) 进行C/C++开发时,官方的C/C++插件提供了一种方便的方式来格式化代码,即通过`.clang-format`配置文件自定义代码风格。然而,当尝试使用`clang-format -style=llvm -dump-config ...
recommend-type

Spring+MongoDB实现登录注册功能

Spring+MongoDB实现登录注册功能 本文主要介绍了使用Spring框架和MongoDB...本文详细介绍了使用Spring框架和MongoDB数据库实现登录注册功能的详细步骤和代码实现,旨在提供一个完整的解决方案,供读者参考和学习。
recommend-type

js纯前端实现腾讯cos文件上传功能的示例代码

在前端开发中,文件上传是一项常见的任务,而腾讯云COS(Cloud Object Storage)提供了可靠的云存储服务。本文将详细讲解如何使用JavaScript SDK实现在纯前端实现腾讯COS的文件上传功能。 首先,为了实现文件上传,...
recommend-type

Python调试器vardbg:动画可视化算法流程

资源摘要信息:"vardbg是一个专为Python设计的简单调试器和事件探查器,它通过生成程序流程的动画可视化效果,增强了算法学习的直观性和互动性。该工具适用于Python 3.6及以上版本,并且由于使用了f-string特性,它要求用户的Python环境必须是3.6或更高。 vardbg是在2019年Google Code-in竞赛期间为CCExtractor项目开发而创建的,它能够跟踪每个变量及其内容的历史记录,并且还能跟踪容器内的元素(如列表、集合和字典等),以便用户能够深入了解程序的状态变化。" 知识点详细说明: 1. Python调试器(Debugger):调试器是开发过程中用于查找和修复代码错误的工具。 vardbg作为一个Python调试器,它为开发者提供了跟踪代码执行、检查变量状态和控制程序流程的能力。通过运行时监控程序,调试器可以发现程序运行时出现的逻辑错误、语法错误和运行时错误等。 2. 事件探查器(Event Profiler):事件探查器是对程序中的特定事件或操作进行记录和分析的工具。 vardbg作为一个事件探查器,可以监控程序中的关键事件,例如变量值的变化和函数调用等,从而帮助开发者理解和优化代码执行路径。 3. 动画可视化效果:vardbg通过生成程序流程的动画可视化图像,使得算法的执行过程变得生动和直观。这对于学习算法的初学者来说尤其有用,因为可视化手段可以提高他们对算法逻辑的理解,并帮助他们更快地掌握复杂的概念。 4. Python版本兼容性:由于vardbg使用了Python的f-string功能,因此它仅兼容Python 3.6及以上版本。f-string是一种格式化字符串的快捷语法,提供了更清晰和简洁的字符串表达方式。开发者在使用vardbg之前,必须确保他们的Python环境满足版本要求。 5. 项目背景和应用:vardbg是在2019年的Google Code-in竞赛中为CCExtractor项目开发的。Google Code-in是一项面向13到17岁的学生开放的竞赛活动,旨在鼓励他们参与开源项目。CCExtractor是一个用于从DVD、Blu-Ray和视频文件中提取字幕信息的软件。vardbg的开发过程中,该项目不仅为学生提供了一个实际开发经验的机会,也展示了学生对开源软件贡献的可能性。 6. 特定功能介绍: - 跟踪变量历史记录:vardbg能够追踪每个变量在程序执行过程中的历史记录,使得开发者可以查看变量值的任何历史状态,帮助诊断问题所在。 - 容器元素跟踪:vardbg支持跟踪容器类型对象内部元素的变化,包括列表、集合和字典等数据结构。这有助于开发者理解数据结构在算法执行过程中的具体变化情况。 通过上述知识点的详细介绍,可以了解到vardbg作为一个针对Python的调试和探查工具,在提供程序流程动画可视化效果的同时,还通过跟踪变量和容器元素等功能,为Python学习者和开发者提供了强大的支持。它不仅提高了学习算法的效率,也为处理和优化代码提供了强大的辅助功能。
recommend-type

管理建模和仿真的文件

管理Boualem Benatallah引用此版本:布阿利姆·贝纳塔拉。管理建模和仿真。约瑟夫-傅立叶大学-格勒诺布尔第一大学,1996年。法语。NNT:电话:00345357HAL ID:电话:00345357https://theses.hal.science/tel-003453572008年12月9日提交HAL是一个多学科的开放存取档案馆,用于存放和传播科学研究论文,无论它们是否被公开。论文可以来自法国或国外的教学和研究机构,也可以来自公共或私人研究中心。L’archive ouverte pluridisciplinaire
recommend-type

【IT设备维保管理入门指南】:如何制定有效的维护计划,提升设备性能与寿命

![【IT设备维保管理入门指南】:如何制定有效的维护计划,提升设备性能与寿命](https://docs.plesk.com/en-US/onyx/administrator-guide/images/78798.webp) # 摘要 本文全面探讨了IT设备维保管理的各个方面,从理论基础到实践案例,再到技术革新和未来展望。首先概述了维保计划的重要性,强调了其在延长设备生命周期和提升性能稳定性方面的作用。接着,文中详细论述了维保计划的制定原则,包括预防性维护、设备分类及成本效益分析等。通过分析不同行业的实践案例,本文揭示了成功维保计划的关键因素,并提出了效果评估与改进的策略。随后,探讨了性能监
recommend-type

python爬取网页链接,url = “https://koubei.16888.com/57233/0-0-0-0”

在Python中,使用如`requests`库来发送HTTP请求并抓取网页链接是比较常见的做法。以下是如何使用`requests`和BeautifulSoup库(用于解析HTML)来爬取给定URL上的信息: 首先,确保已安装`requests`和`beautifulsoup4`库,如果未安装可以使用以下命令安装: ```bash pip install requests beautifulsoup4 ``` 然后,你可以编写以下Python脚本来爬取指定URL的内容: ```python import requests from bs4 import BeautifulSoup # 定义要
recommend-type

掌握Web开发:Udacity天气日记项目解析

资源摘要信息: "Udacity-Weather-Journal:Web开发路线的Udacity纳米度-项目2" 知识点: 1. Udacity:Udacity是一个提供在线课程和纳米学位项目的教育平台,涉及IT、数据科学、人工智能、机器学习等众多领域。纳米学位是Udacity提供的一种专业课程认证,通过一系列课程的学习和实践项目,帮助学习者掌握专业技能,并提供就业支持。 2. Web开发路线:Web开发是构建网页和网站的应用程序的过程。学习Web开发通常包括前端开发(涉及HTML、CSS、JavaScript等技术)和后端开发(可能涉及各种服务器端语言和数据库技术)的学习。Web开发路线指的是在学习过程中所遵循的路径和进度安排。 3. 纳米度项目2:在Udacity提供的学习路径中,纳米学位项目通常是实践导向的任务,让学生能够在真实世界的情境中应用所学的知识。这些项目往往需要学生完成一系列具体任务,如开发一个网站、创建一个应用程序等,以此来展示他们所掌握的技能和知识。 4. Udacity-Weather-Journal项目:这个项目听起来是关于创建一个天气日记的Web应用程序。在完成这个项目时,学习者可能需要运用他们关于Web开发的知识,包括前端设计(使用HTML、CSS、Bootstrap等框架设计用户界面),使用JavaScript进行用户交互处理,以及可能的后端开发(如果需要保存用户数据,可能会使用数据库技术如SQLite、MySQL或MongoDB)。 5. 压缩包子文件:这里提到的“压缩包子文件”可能是一个笔误或误解,它可能实际上是指“压缩包文件”(Zip archive)。在文件名称列表中的“Udacity-Weather-journal-master”可能意味着该项目的所有相关文件都被压缩在一个名为“Udacity-Weather-journal-master.zip”的压缩文件中,这通常用于将项目文件归档和传输。 6. 文件名称列表:文件名称列表提供了项目文件的结构概览,它可能包含HTML、CSS、JavaScript文件以及可能的服务器端文件(如Python、Node.js文件等),此外还可能包括项目依赖文件(如package.json、requirements.txt等),以及项目文档和说明。 7. 实际项目开发流程:在开发像Udacity-Weather-Journal这样的项目时,学习者可能需要经历需求分析、设计、编码、测试和部署等阶段。在每个阶段,他们需要应用他们所学的理论知识,并解决在项目开发过程中遇到的实际问题。 8. 技术栈:虽然具体的技术栈未在标题和描述中明确提及,但一个典型的Web开发项目可能涉及的技术包括但不限于HTML5、CSS3、JavaScript(可能使用框架如React.js、Angular.js或Vue.js)、Bootstrap、Node.js、Express.js、数据库技术(如上所述),以及版本控制系统如Git。 9. 学习成果展示:完成这样的项目后,学习者将拥有一个可部署的Web应用程序,以及一个展示他们技术能力的项目案例,这些对于未来的求职和职业发展都是有价值的。 10. 知识点整合:在进行Udacity-Weather-Journal项目时,学习者需要将所学的多个知识点融合在一起,包括前端设计、用户体验、后端逻辑处理、数据存储和检索、以及可能的API调用等。 总结来说,Udacity-Weather-Journal项目是Udacity Web开发纳米学位课程中的一个重要实践环节,它要求学习者运用他们所学到的前端和后端开发技能,完成一个具体的Web应用程序项目。通过完成这样的项目,学习者能够将理论知识转化为实践经验,并为他们未来在IT行业的职业发展打下坚实的基础。