| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270 |
- <template>
- <view class="container">
- <view class="navigation-bar">体脂率</view>
- <view class="back" @click="onBack(0, $event)">
- <image src="/static/backArrow.png" mode="aspectFit" style="width:100%"></image>
- </view>
-
- <view class="content">
-
- <text class="result-area">{{result}}</text>
- <button class="help" @click="onHelp(0, $event)">宁哥笔记</button>
-
- <view class="input-area">
- <view class="waistline">
- <view class="input-title">腰围 : </view>
- <input class="input" type="number" placeholder="请输入腰围" v-model="waistline" />
- </view>
-
- <view class="weight">
- <view class="input-title">体重 : </view>
- <input class="input" type="number" placeholder="请输入体重" v-model="weight" />
- </view>
- </view>
-
- <button class="confirm" @click="onClick(0, $event)">确定</button>
-
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- waistline:-1,
- weight:-1,
- result:'',
- }
- },
- onLoad() {
- this.waistline = 0;
- this.weight = 0;
-
- // console.log('waistline=',getApp().globalData.waistline);
- // console.log('weight=',getApp().globalData.weight);
-
- if(getApp().globalData.waistline != undefined)
- {
- this.waistline = getApp().globalData.waistline;
- }
-
- if(getApp().globalData.weight != undefined)
- {
- this.weight = getApp().globalData.weight;
- }
- },
- methods: {
- onBack: function(id,e) {
- //uni.navigateBack()//默认delta:1
- uni.navigateBack({
- delta:1,//返回层数,2则上上页
- })
- },
- onHelp: function(id,e) {
- uni.navigateTo({
- url: '/pages/bodyFatRatio/help',
- animationType: 'slide-in-left',
- animationDuration: 2000,
- success: res => {},
- fail: () => {},
- complete: () => {}
- });
- },
- onClick: function(id,e) {
-
- if(this.heartRate != -1 && this.age != -1)
- {
- getApp().globalData.waistline = this.waistline;
- getApp().globalData.weight = this.weight;
- //身体脂肪总重量(单位:千克)
- let fatWeight = -1;
- //体脂率=(身体脂肪总量÷体重)
- let fatRate = -1;
-
- if(getApp().globalData.gender)
- {
- fatWeight = this.waistline - (this.weight*0.082+34.89);
- fatRate = fatWeight/this.weight * 100;
- }
- else
- {
- fatWeight = this.waistline - (this.weight*0.082+44.74);
- fatRate = fatWeight/this.weight * 100;
- }
-
-
- this.result = '身体脂肪总重量: '+ Math.round(fatWeight) + '千克\n' + '体脂率: '+ Math.round(fatRate)+'%';
-
- getApp().globalData.fatWeight = this.fatWeight;
- getApp().globalData.fatRate = this.fatRate;
- }
- else
- {
- switch (id)
- {
- case 0:
- alert('请输入体重');
- break;
-
- case 1:
- alert('请输入身高');
- break;
-
- case 2:
- alert('请输入年龄');
- break;
-
- default:
- break;
- }
-
- }
- },
- }
- }
- </script>
- <style lang="scss">
- .container {
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: center;
-
- width:100%;
- height: 100vh;
- }
-
- .navigation-bar
- {
- display: flex;
- align-items: center;
- justify-content: center;
-
- width: 100%;
- height: 10%;
-
- font-weight: 700;
- color: white;
-
- background-color: rgb(115,164,164);
- }
- .back{
- position: absolute;
-
- display: flex;
- align-items: center;
- justify-content: center;
-
- width: 2%;
- height: 2%;
- top: 3%;
- left: 1%;
- //testing
- // border: 1px solid rgb(255,0,0);
- }
-
- .content{
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: center;
-
- width:100%;
- height:100%;
- }
-
- .result-area{
- display: flex;
- align-items: center;
- justify-content: center;
-
- width:60%;
- height:30%;
- margin: 1%;
-
- border-radius: 25rpx;
- background-color: rgb(115,164,164);
- }
-
- .help{
- color: azure;
- background-color: rgb(0,0,0);
- }
-
- .input-area{
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: center;
-
- width:60%;
- height:60%;
- margin: 1%;
-
- .waistline{
- display: flex;
- flex-direction: row;
- align-items: center;
- justify-content: center;
-
- width:100%;
- height:100%;
- margin: 1%;
-
- border-radius: 25rpx;
- background-color: rgb(115,164,164);
- }
-
- .weight{
- display: flex;
- flex-direction: row;
- align-items: center;
- justify-content: center;
-
- width:100%;
- height:100%;
- margin: 3%;
-
- border-radius: 25rpx;
- background-color: rgb(115,164,164);
- }
-
- .input-title{
- //testing
- // border: 1px solid rgb(255,0,0);
- }
- .input{
- display: flex;
- justify-content: center;
- align-items: center;
- background: #F4F4F4;
- border-radius: 4upx;
- height: 70upx;
- font-size: 28upx;
- line-height: 70upx;
- font-family: PingFang SC;
- font-weight: 500;
- color: #848484;
-
- text-align:center;
-
- margin: 1%;
- }
- }
-
- .confirm{
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: center;
-
- width:10%;
- height:10%;
- margin: 1%;
- }
- </style>
|