diff --git a/api/system/doctor.js b/api/system/doctor.js
new file mode 100644
index 0000000..454b444
--- /dev/null
+++ b/api/system/doctor.js
@@ -0,0 +1,44 @@
+import request from '@/utils/request'
+
+// 查询医生列表
+export function listDoctor(query) {
+ return request({
+ url: '/system/doctor/list',
+ method: 'get',
+ params: query
+ })
+}
+
+// 查询医生详细
+export function getDoctor(id) {
+ return request({
+ url: '/system/doctor/' + id,
+ method: 'get'
+ })
+}
+
+// 新增医生
+export function addDoctor(data) {
+ return request({
+ url: '/system/doctor',
+ method: 'post',
+ data: data
+ })
+}
+
+// 修改医生
+export function updateDoctor(data) {
+ return request({
+ url: '/system/doctor',
+ method: 'put',
+ data: data
+ })
+}
+
+// 删除医生
+export function delDoctor(id) {
+ return request({
+ url: '/system/doctor/' + id,
+ method: 'delete'
+ })
+}
diff --git a/views/system/doctor/index.vue b/views/system/doctor/index.vue
new file mode 100644
index 0000000..7e64d45
--- /dev/null
+++ b/views/system/doctor/index.vue
@@ -0,0 +1,269 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 搜索
+ 重置
+
+
+
+
+
+ 新增
+
+
+ 修改
+
+
+ 删除
+
+
+ 导出
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 修改
+ 删除
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+