diff --git a/healthlink-his-ui/src/views/reconstruction/3d/api.js b/healthlink-his-ui/src/views/reconstruction/3d/api.js index cf4a2ae3c..efe1dd2fb 100644 --- a/healthlink-his-ui/src/views/reconstruction/3d/api.js +++ b/healthlink-his-ui/src/views/reconstruction/3d/api.js @@ -10,3 +10,5 @@ export function addReport(d){return request({url:'/reconstruction/report/add',me export function submitReport(id){return request({url:'/reconstruction/report/submit/'+id,method:'put'})} export function verifyReport(id,doctor){return request({url:'/reconstruction/report/verify/'+id,method:'put',params:{doctor}})} export function getStats(){return request({url:'/reconstruction/stats',method:'get'})} +// 获取医生列表(有医生角色的用户) +export function getDoctorList(){return request({url:'/system/user/list',method:'get',params:{pageSize:200}})} diff --git a/healthlink-his-ui/src/views/reconstruction/3d/index.vue b/healthlink-his-ui/src/views/reconstruction/3d/index.vue index 116ce579e..0fdd363da 100644 --- a/healthlink-his-ui/src/views/reconstruction/3d/index.vue +++ b/healthlink-his-ui/src/views/reconstruction/3d/index.vue @@ -11,6 +11,7 @@
{{ stats.totalReports||0 }}
报告数
+
@@ -21,7 +22,7 @@ 查询 -新建任务 +新建任务
@@ -33,10 +34,11 @@ 待处理 处理中 已完成 +已取消 {{ row.taskStatus }} - + + diff --git a/healthlink-his-ui/src/views/reconstruction/3d/viewer.vue b/healthlink-his-ui/src/views/reconstruction/3d/viewer.vue index d34e4ae7e..906d90bba 100644 --- a/healthlink-his-ui/src/views/reconstruction/3d/viewer.vue +++ b/healthlink-his-ui/src/views/reconstruction/3d/viewer.vue @@ -1,599 +1,250 @@