|
|
@ -1211,10 +1211,10 @@ export default { |
|
|
|
const { |
|
|
|
weight, //体重 |
|
|
|
fat, //脂肪 |
|
|
|
Bone, //骨质 |
|
|
|
Protein, //蛋白质 |
|
|
|
Water, //水分 |
|
|
|
Muscle, //肌肉 |
|
|
|
bone, //骨质 |
|
|
|
protein, //蛋白质 |
|
|
|
water, //水分 |
|
|
|
muscle, //肌肉 |
|
|
|
SMM, //骨骼肌 |
|
|
|
pbf, //体脂百分比 |
|
|
|
bmi, //体质指数 |
|
|
@ -1223,25 +1223,24 @@ export default { |
|
|
|
bodyAge, //身体年龄 |
|
|
|
score, //健康评分 |
|
|
|
bodyType, //体型判定 |
|
|
|
LBM, //瘦体重(去脂体重) |
|
|
|
lbm, //瘦体重(去脂体重) |
|
|
|
} = res.data; |
|
|
|
|
|
|
|
this.detailsForm.PG_RTCF_TZ = weight; |
|
|
|
this.detailsForm.PG_RTCF_QZTZ = lbm; |
|
|
|
this.detailsForm.PG_RTCF_JRL = muscle; |
|
|
|
this.detailsForm.PG_RTCF_TBW = water; |
|
|
|
this.detailsForm.PG_RTCF_DBZ = protein; |
|
|
|
this.detailsForm.PG_RTCF_GZ = bone; |
|
|
|
this.detailsForm.PG_RTCF_ZF = fat; |
|
|
|
this.detailsForm.PG_RTCF_PBF = pbf; |
|
|
|
this.detailsForm.PG_RTCF_BMI = bmi; |
|
|
|
this.detailsForm.PG_RTCF_WHR = whr; |
|
|
|
this.detailsForm.PG_RTCF_NZZFSP = vfi; |
|
|
|
this.detailsForm.PG_RTCF_TZ = weight; // 体重 |
|
|
|
this.detailsForm.PG_RTCF_QZTZ = lbm; // 去脂体重 |
|
|
|
this.detailsForm.PG_RTCF_JRL = muscle; // 肌肉量 |
|
|
|
this.detailsForm.PG_RTCF_TBW = water; // 总水分(TBW) |
|
|
|
this.detailsForm.PG_RTCF_DBZ = protein; // 蛋白质 |
|
|
|
this.detailsForm.PG_RTCF_GZ = bone; // 骨质量(GZ) |
|
|
|
this.detailsForm.PG_RTCF_ZF = fat; // 脂肪 |
|
|
|
this.detailsForm.PG_RTCF_PBF = pbf; // 体脂百分比 |
|
|
|
this.detailsForm.PG_RTCF_BMI = bmi; // 体质指数(BMI) |
|
|
|
this.detailsForm.PG_RTCF_WHR = whr; // 腰臀比(WHR) |
|
|
|
this.detailsForm.PG_RTCF_NZZFSP = vfi; // 内脏脂肪水平 |
|
|
|
this.detailsForm.PG_RTCF_STGCFBFB = ""; // 身体各成分百分比 |
|
|
|
this.detailsForm.PG_RTCF_TXLX = bodyType; |
|
|
|
this.detailsForm.PG_RTCF_STNL = bodyAge; |
|
|
|
this.detailsForm.PG_RTCF_JKPF = score; |
|
|
|
console.log("res", res.data); |
|
|
|
this.detailsForm.PG_RTCF_TXLX = bodyType; // 体型类型 |
|
|
|
this.detailsForm.PG_RTCF_STNL = bodyAge; // 身体年龄 |
|
|
|
this.detailsForm.PG_RTCF_JKPF = score; // 健康评分 |
|
|
|
}); |
|
|
|
}, |
|
|
|
// 判断是否显示诊疗方法 |
|
|
|