。。。

This commit is contained in:
2022-07-15 16:46:38 +08:00
parent f4ab239ab6
commit eaa4e300e0
4 changed files with 95 additions and 151 deletions

View File

@@ -26,7 +26,6 @@ const goutAdd = (data) => {
// 查看病例
const goutSee = (data) => {
console.log(data)
return request({
url: 'gout/result',
data:data

View File

@@ -35,27 +35,27 @@
<image src="/static/imgs/zhi.png" mode="widthFix" style="width: 30rpx;" />
<text>高血脂</text>
</view>
<view class="title">{{countInfo.hyperlipidemia.first}} {{countInfo.hyperlipidemia.unit}}</view>
<view class="title">{{countInfo.hyperlipidemia.max}} {{countInfo.hyperlipidemia.unit}}</view>
<view class="title">{{countInfo.hyperlipidemia.last}} {{countInfo.hyperlipidemia.unit}}</view>
<view class="title">{{countInfo.hyperlipidemia.first}}</view>
<view class="title">{{countInfo.hyperlipidemia.max}}</view>
<view class="title">{{countInfo.hyperlipidemia.last}}</view>
</view>
<view class="baseitem">
<view class="title">
<image src="/static/imgs/ya.png" mode="widthFix" style="width: 30rpx;" />
<text>高血压</text>
</view>
<view class="title">{{countInfo.hypertension.first}} {{countInfo.hypertension.unit}}</view>
<view class="title">{{countInfo.hypertension.max}} {{countInfo.hypertension.unit}}</view>
<view class="title">{{countInfo.hypertension.last}} {{countInfo.hypertension.unit}}</view>
<view class="title">{{countInfo.hypertension.first}}</view>
<view class="title">{{countInfo.hypertension.max}}</view>
<view class="title">{{countInfo.hypertension.last}}</view>
</view>
<view class="baseitem">
<view class="title">
<image src="/static/imgs/tang.png" mode="widthFix" style="width: 30rpx;" />
<text>高血糖</text>
</view>
<view class="title">{{countInfo.hyperglycemia.first}} {{countInfo.hyperglycemia.unit}}</view>
<view class="title">{{countInfo.hyperglycemia.max}} {{countInfo.hyperglycemia.unit}}</view>
<view class="title">{{countInfo.hyperglycemia.last}} {{countInfo.hyperglycemia.unit}}</view>
<view class="title">{{countInfo.hyperglycemia.first}}</view>
<view class="title">{{countInfo.hyperglycemia.max}}</view>
<view class="title">{{countInfo.hyperglycemia.last}}</view>
</view>
</view>
@@ -75,7 +75,7 @@
v-if="items.type == 'case_log'">
<view class="caseTime-cont-left" :class="{active : items.item.cover}">
<view class="caseTime-cont-name" v-if="items.item">
{{ items.item.type.text }}测量结果 - {{ items.item.quantity }}
{{ items.item.type.text }}测量 - {{ items.item.quantity }}{{items.item.type.unit}}
</view>
<view class="nowrap-multi caseTime-cont-text">
{{ items.item.remark }}
@@ -116,8 +116,8 @@
mode="aspectFill"></image>
</view>
<view class="recordCont-form">
<view class="site-input">
<label> 测量值</label> <view class="recordCont-title-input"> {{ LogInfo.quantity }} </view>
<view class="site-input" v-if="LogInfo.type">
<label> 测量值</label> <view class="recordCont-title-input"> {{ LogInfo.quantity }} {{LogInfo.type.unit}} </view>
</view>
<view class="site-input">
<label>备注描述</label> <view class="site-remarks"> {{ LogInfo.remark }} </view>
@@ -176,7 +176,6 @@
// 获取列表
getlist(){
goutSee({page:this.page,type:''}).then(res => {
console.log(res)
if(this.page === 1){
this.caseInfo = res.case
this.countInfo = res.count
@@ -441,6 +440,7 @@
.caseTime-cont-name {
color: #3670ce;
font-size: 30rpx;
word-break: break-word;
}
.caseTime-cont-text {

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long