選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

index.wxml 6.2KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172
  1. <view class="gray-content" bindtap="linkBleButton">{{linksToPrompt}}</view>
  2. <view class="info-div">
  3. <view class="info-item" bindtap="sexClick">
  4. <text class="info-item-text-1">性别</text>
  5. <view class="info-right-div">
  6. <text class="info-item-text-2" color="red" >{{sex}}</text>
  7. <image src="../Image/ok.png" class="info-item-image"></image>
  8. </view>
  9. </view>
  10. <picker mode="date" value="{{briday}}" start="1900-09-01" end="{{endTime}}" bindchange="bindDateChange">
  11. <view class="info-item">
  12. <text class="info-item-text-1">生日</text>
  13. <view class="info-right-div">
  14. <text class="info-item-text-2">{{briday}}</text>
  15. <image src="../Image/ok.png" class="info-item-image"></image>
  16. </view>
  17. </view>
  18. </picker>
  19. <picker bindchange="bindHightChange" value="{{index}}" range="{{array}}">
  20. <view class="info-item end-border">
  21. <text class="info-item-text-1">身高</text>
  22. <view class="info-right-div">
  23. <text class="info-item-text-2">{{array[index]}}cm</text>
  24. <image src="../Image/ok.png" class="info-item-image"></image>
  25. </view>
  26. </view>
  27. </picker>
  28. </view>
  29. <view class="shape-cover" wx:if="{{isSexShow}}" bindtap="sexClick">
  30. <view class="sex-modal">
  31. <text class="modal-text-title">性别</text>
  32. <view class="male-div" bindtap="manClick">
  33. <text class="modal-text">男</text>
  34. <image src="{{man_image}}" class="radio-class"></image>
  35. </view>
  36. <view class="line"></view>
  37. <view class="male-div" bindtap="womanClick">
  38. <text class="modal-text">女</text>
  39. <image src="{{women_image}}" class="radio-class"></image>
  40. </view>
  41. </view>
  42. </view>
  43. <view class="table-content">
  44. <!-- 数据 -->
  45. <view class="top-right-b-a" bindtap="onChangeShowState0">
  46. <view class="top-right-a-1"><image src="../Image/weight.png"></image>体重</view>
  47. <view class="top-right-a-2">{{weightsum}}{{UD_unit}}</view>
  48. </view>
  49. <view class="top-right-b-a" bindtap="onChangeShowState0">
  50. <view class="top-right-a-1"><image src="../Image/weight.png"></image>阻抗</view>
  51. <view class="top-right-a-2">{{adc}}</view>
  52. </view>
  53. <view class="top-right-b-a" bindtap="onChangeShowState0">
  54. <view class="top-right-a-1"><image src="../Image/weight.png"></image>温度</view>
  55. <view class="top-right-a-2">{{temp}}</view>
  56. </view>
  57. <view class="top-right-b-a" bindtap="onChangeShowState0">
  58. <view class="top-right-a-1"><image src="../Image/weight.png"></image>DID</view>
  59. <view class="top-right-a-2">{{did}}</view>
  60. </view>
  61. <view class="top-right-b-a" bindtap="onChangeShowState1">
  62. <view class="top-right-a-1"><image src="../Image/bmi.png"></image>BMI</view>
  63. <view class="top-right-a-2">{{BMI}}</view>
  64. </view>
  65. <view class="top-right-b-a" bindtap="onChangeShowState2">
  66. <view class="top-right-a-1"><image src="../Image/bfr.png"></image>体脂率</view>
  67. <view class="top-right-a-2">{{fatRate}} {{unit}}</view>
  68. </view>
  69. <view class="top-right-b-a " bindtap="onChangeShowState7">
  70. <view class="top-right-a-1">
  71. <image src="../Image/muscle.png"></image>肌肉率</view>
  72. <view class="top-right-a-2">{{muscle}} {{unit}}</view>
  73. </view>
  74. <view class="top-right-b-a " bindtap="onChangeShowState10">
  75. <view class="top-right-a-1">
  76. <image src="../Image/moisture.png"></image>水份</view>
  77. <view class="top-right-a-2">{{moisture}} {{unit}}</view>
  78. </view>
  79. <view class="top-right-b-a " bindtap="onChangeShowState8">
  80. <view class="top-right-a-1">
  81. <image src="../Image/bone_mass.png"></image>骨量</view>
  82. <view class="top-right-a-2">{{boneMass}} {{unit}}</view>
  83. </view>
  84. <view class="top-right-b-a " bindtap="onChangeShowState4">
  85. <view class="top-right-a-1">
  86. <image src="../Image/bmr.png"></image>基础代谢率</view>
  87. <view class="top-right-a-2">{{BMR}} {{kcal}}</view>
  88. </view>
  89. <view class="top-right-b-a " bindtap="onChangeShowState6">
  90. <view class="top-right-a-1">
  91. <image src="../Image/visceral_fat.png"></image>内脏脂肪指数</view>
  92. <view class="top-right-a-2">{{visceralFat}}</view>
  93. </view>
  94. <view class="top-right-b-a " bindtap="onChangeShowState14">
  95. <view class="top-right-a-1">
  96. <image src="../Image/sub_fat.png"></image>皮下脂肪率</view>
  97. <view class="top-right-a-2">{{subcutaneousFat}} {{unit}}</view>
  98. </view>
  99. <view class="top-right-b-a " bindtap="onChangeShowState9">
  100. <view class="top-right-a-1">
  101. <image src="../Image/protein_rate.png"></image>蛋白率</view>
  102. <view class="top-right-a-2">{{proteinRate}} {{unit}}</view>
  103. </view>
  104. <view class="top-right-b-a " bindtap="onChangeShowState17">
  105. <view class="top-right-a-1">
  106. <image src="../Image/body_type.png"></image>身体年龄</view>
  107. <view class="top-right-a-2">{{physicalAge}}</view>
  108. </view>
  109. <view class="top-right-b-a " bindtap="onChangeShowState17">
  110. <view class="top-right-a-1">
  111. <image src="../Image/standard_weight.png"></image>标准体重</view>
  112. <view class="top-right-a-2">{{standardWeight}}{{UD_unit}}</view>
  113. </view>
  114. <view class="top-right-b-a " bindtap="onChangeShowState17">
  115. <view class="top-right-a-1">
  116. <image src="../Image/weight_ci.png"></image>体重控制量</view>
  117. <view class="top-right-a-2">{{controlWeight}}{{UD_unit}}</view>
  118. </view>
  119. <view class="top-right-b-a " bindtap="onChangeShowState17">
  120. <view class="top-right-a-1">
  121. <image src="../Image/fat_weight.png"></image>脂肪量</view>
  122. <view class="top-right-a-2">{{fat}}{{UD_unit}}</view>
  123. </view>
  124. <view class="top-right-b-a " bindtap="onChangeShowState17">
  125. <view class="top-right-a-1">
  126. <image src="../Image/out_fat_weight.png"></image>去脂体重</view>
  127. <view class="top-right-a-2">{{removeFatWeight}}{{UD_unit}}</view>
  128. </view>
  129. <view class="top-right-b-a " bindtap="onChangeShowState17">
  130. <view class="top-right-a-1">
  131. <image src="../Image/muscle_weight.png"></image>肌肉量</view>
  132. <view class="top-right-a-2">{{muscleMass}}{{UD_unit}}</view>
  133. </view>
  134. <view class="top-right-b-a " bindtap="onChangeShowState17">
  135. <view class="top-right-a-1">
  136. <image src="../Image/pr_weight.png"></image>蛋白量</view>
  137. <view class="top-right-a-2">{{protein}}{{UD_unit}}</view>
  138. </view>
  139. </view>