diff --git a/healthlink-his-ui/src/views/emr/data-warehouse/index.vue b/healthlink-his-ui/src/views/emr/data-warehouse/index.vue new file mode 100644 index 000000000..bf5d2e5b9 --- /dev/null +++ b/healthlink-his-ui/src/views/emr/data-warehouse/index.vue @@ -0,0 +1,193 @@ + + + + + 结构化数据提取 + + + + + + + + 提取数据 + + + + + + + + 结构化数据查看 + + + + + + + + 查询 + + + + + + + {{ dataTypeMap[scope.row.dataType] || scope.row.dataType }} + + + + + + + + + + + + 质控评分 + + + + + + + + 计算评分 + + + 查询历史 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/healthlink-his-ui/src/views/esbmanage/regionalshare/api.js b/healthlink-his-ui/src/views/esbmanage/regionalshare/api.js new file mode 100644 index 000000000..b34d0b323 --- /dev/null +++ b/healthlink-his-ui/src/views/esbmanage/regionalshare/api.js @@ -0,0 +1,13 @@ +import request from '@/utils/request' + +export function sharePatientData(params) { + return request({ url: '/regional/share', method: 'post', params }) +} + +export function getShareRecords(encounterId) { + return request({ url: '/regional/share/records/' + encounterId, method: 'get' }) +} + +export function getShareStats() { + return request({ url: '/regional/share/stats', method: 'get' }) +} diff --git a/healthlink-his-ui/src/views/esbmanage/regionalshare/index.vue b/healthlink-his-ui/src/views/esbmanage/regionalshare/index.vue new file mode 100644 index 000000000..4a62a5a0b --- /dev/null +++ b/healthlink-his-ui/src/views/esbmanage/regionalshare/index.vue @@ -0,0 +1,240 @@ + + + + + + + + + + + + {{ stats.total || 0 }} + + 总共享数 + + + + + + + + + + + + + {{ stats.pending || 0 }} + + 待处理 + + + + + + + + + + + + + {{ stats.success || 0 }} + + 成功 + + + + + + + + + + + + + {{ stats.failed || 0 }} + + 失败 + + + + + + + + + 发起共享 + + + + + + + + + + + 共享 + + + + + + + + 共享记录 + + + + + + + + + + {{ row.shareStatus }} + + + + + + + + + + + + + +