diff --git a/healthlink-his-ui/src/views/clinicalmanage/api.js b/healthlink-his-ui/src/views/clinicalmanage/api.js
new file mode 100644
index 000000000..ff7c84e1c
--- /dev/null
+++ b/healthlink-his-ui/src/views/clinicalmanage/api.js
@@ -0,0 +1,7 @@
+import request from '@/utils/request'
+export function getWorkflowPage(p) { return request({ url: '/clinical-pathway/page', method: 'get', params: p }) }
+export function addWorkflow(d) { return request({ url: '/clinical-pathway/add', method: 'post', data: d }) }
+export function enterPathway(d) { return request({ url: '/clinical-pathway/enter', method: 'post', data: d }) }
+export function completePathway(id) { return request({ url: '/clinical-pathway/complete/' + id, method: 'put' }) }
+export function varyPathway(id, reason) { return request({ url: '/clinical-pathway/vary/' + id, method: 'put', params: { reason } }) }
+export function getStats() { return request({ url: '/clinical-pathway/stats', method: 'get' }) }
diff --git a/healthlink-his-ui/src/views/clinicalmanage/pathway/index.vue b/healthlink-his-ui/src/views/clinicalmanage/pathway/index.vue
new file mode 100644
index 000000000..0981addb1
--- /dev/null
+++ b/healthlink-his-ui/src/views/clinicalmanage/pathway/index.vue
@@ -0,0 +1,91 @@
+
+
+
+
+
+
+
+
+
+
+
+ 临床路径管理
+ 新增路径
+
+
+
+
+
+ 搜索
+ 重置
+
+
+
+
+
+
+
+
+
+
+ {{ s.row.status === 'ACTIVE' ? '启用' : '停用' }}
+
+
+
+
+ 入径
+ 完成
+ 变异
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 取消
+ 确定
+
+
+
+
+
+