diff --git a/apis/interfaces/gout.js b/apis/interfaces/gout.js
index c20175f..07e4365 100644
--- a/apis/interfaces/gout.js
+++ b/apis/interfaces/gout.js
@@ -25,9 +25,11 @@ const goutAdd = (data) => {
}
// 查看病例
-const goutSee = () => {
+const goutSee = (data) => {
+ console.log(data)
return request({
- url: 'gout/result'
+ url: 'gout/result',
+ data:data
})
}
diff --git a/pages/user/index.vue b/pages/user/index.vue
index 31e22df..df1469b 100644
--- a/pages/user/index.vue
+++ b/pages/user/index.vue
@@ -11,7 +11,7 @@
用户档案
- 病例档案
+ 健康档案
diff --git a/pages/userCase/userCase.vue b/pages/userCase/userCase.vue
index a76a1fa..0efaf15 100644
--- a/pages/userCase/userCase.vue
+++ b/pages/userCase/userCase.vue
@@ -3,7 +3,7 @@
- 患者:{{ caseInfo.name }}
+ 建档人:{{ caseInfo.name }}
@@ -24,33 +24,59 @@
- 初始值
+ 测量类型
-
- {{ countInfo.first != 0 ? countInfo.first : '-' }}
+
+
+
+ 初始值
最高值
-
- {{ countInfo.max != 0 ? countInfo.max : '-' }}
-
最新值
-
- {{ countInfo.last != 0 ? countInfo.last : '-' }}
-
+
+
+
+
+ 高血脂
+
+ {{countInfo.hyperlipidemia.first}} {{countInfo.hyperlipidemia.unit}}
+ {{countInfo.hyperlipidemia.max}} {{countInfo.hyperlipidemia.unit}}
+ {{countInfo.hyperlipidemia.last}} {{countInfo.hyperlipidemia.unit}}
+
+
+
+
+ 高血压
+
+ {{countInfo.hypertension.first}} {{countInfo.hypertension.unit}}
+ {{countInfo.hypertension.max}} {{countInfo.hypertension.unit}}
+ {{countInfo.hypertension.last}} {{countInfo.hypertension.unit}}
+
+
+
+
+ 高血糖
+
+ {{countInfo.hyperglycemia.first}} {{countInfo.hyperglycemia.unit}}
+ {{countInfo.hyperglycemia.max}} {{countInfo.hyperglycemia.unit}}
+ {{countInfo.hyperglycemia.last}} {{countInfo.hyperglycemia.unit}}
+
+
+