199 lines
5.0 KiB
Vue
199 lines
5.0 KiB
Vue
<template>
|
||
<view class="weightPages">
|
||
<view class="content ">
|
||
<view class="title">{{$t("linkBluetoothSuccess")}}</view>
|
||
<view class="text">{{text}}</view>
|
||
<view class="image">
|
||
<image src="/pageTwo/static/PCL.gif" class="image3"></image>
|
||
</view>
|
||
<view class="tips">
|
||
<text>{{$t("msgTitle")}}:</text>
|
||
<text>1.{{$t("onDeviceBluetoothTips")}}</text>
|
||
<text>2.{{$t("openDeviceeMeasureTips")}}</text>
|
||
</view>
|
||
</view>
|
||
<!-- 手动记录 -->
|
||
<view class="wrapper" v-if="isHeight">
|
||
<view class="bg"></view>
|
||
<view class="Blue">
|
||
<view class="h4">{{$t("measureResultTips")}}</view>
|
||
<view class="Blue-box">
|
||
{{$t("nowWeight")}}:<text>{{weight}}{{unit}}</text>
|
||
</view>
|
||
<view class="Blue-box">
|
||
{{$t("lastHeight")}}:<input v-model="height" type="digit" :placeholder="$t('verifyHeight')" />cm
|
||
</view>
|
||
<view class="Blue-btn Blue-close" @click="handleBack">{{$t("remeasure")}}</view>
|
||
<view class="Blue-btn" @click="handleGetMeasure">{{$t("SaveResult")}}</view>
|
||
</view>
|
||
</view>
|
||
</view>
|
||
</template>
|
||
|
||
<script>
|
||
import {
|
||
mapState
|
||
} from "vuex";
|
||
let myTime;
|
||
export default {
|
||
data() {
|
||
return {
|
||
text: "",
|
||
imp: "",
|
||
weight: "",
|
||
height: "",
|
||
deviceId: "",
|
||
unit: "kg",
|
||
isHeight: false,
|
||
stopblue: false,
|
||
typeInfo: -1
|
||
}
|
||
},
|
||
computed: {
|
||
...mapState(["user", "bleValue", "isBluetoothTyle"]),
|
||
info() {
|
||
return this.user
|
||
},
|
||
},
|
||
onLoad(options) {
|
||
let that = this
|
||
that.text = ""
|
||
that.typeInfo = -1
|
||
that.deviceId = options.deviceId
|
||
that.height = that.user.height
|
||
that.onBluetoothDeviceFound()
|
||
},
|
||
onUnload: function() {
|
||
let that = this
|
||
that.$store.commit("changeBluetoothValue", {
|
||
isFood: false,
|
||
isConnectStatus: 1,
|
||
bleTipsText: that.$t("ConnectionTimeout"),
|
||
})
|
||
that.$store.commit("changehomeCard", 0);
|
||
that.$ble.stopBluetoothDevicesDiscovery() //取消蓝牙搜索
|
||
},
|
||
watch: {
|
||
isBluetoothTyle: function() {
|
||
let that = this
|
||
if (!that.isBluetoothTyle) {
|
||
that.$tools.showModal(that.$t("linkBluetoothFail2"))
|
||
}
|
||
},
|
||
stopblue: function() {
|
||
let that = this
|
||
if (!that.stopblue) {
|
||
that.isHeight = false
|
||
return
|
||
}
|
||
if (that.stopblue && that.typeInfo == 1) {
|
||
that.isHeight = true
|
||
}
|
||
}
|
||
},
|
||
methods: {
|
||
/**
|
||
* 发现外围设备
|
||
*/
|
||
onBluetoothDeviceFound() {
|
||
var that = this
|
||
uni.onBluetoothDeviceFound(res => {
|
||
res.devices.forEach(device => {
|
||
device.advertisData = device.advertisData ? device.advertisData : ''
|
||
let value = that.$tools.ab2hex(device.advertisData, "")
|
||
let type = value.substring(0, 2)
|
||
if (type.toLowerCase() == 'c0') {
|
||
let msg = parseInt(value.substring(16, 18), 16).toString(2)
|
||
let type = msg.substring(0, 1) //类型 0体重,1体脂
|
||
let unit = msg.substring(1, 3) //单位
|
||
let num = msg.substring(3, 5) //小数点
|
||
let weight = parseInt(value.substring(4, 8), 16)
|
||
let status = msg.substring(5, 6) //0实时,1稳定
|
||
console.log("value", value, "状态:", status, "类型:", type, )
|
||
console.log('体重:', weight, "小数点:", num, "单位:", unit)
|
||
if (unit == "10") {
|
||
that.unit = "lb"
|
||
}
|
||
if (num == "00") {
|
||
weight = weight / 10
|
||
}
|
||
if (num == "01") {
|
||
that.unit = "斤"
|
||
}
|
||
if (num == "10") {
|
||
if (unit == "10") {
|
||
that.unit = "lb"
|
||
weight = weight / 10
|
||
} else {
|
||
weight = weight / 100
|
||
}
|
||
}
|
||
if (status == "0") {
|
||
that.typeInfo = 0
|
||
that.stopblue = false
|
||
that.text = that.$t("realTimeWeight") + weight + that.unit
|
||
}
|
||
if (status == "1") {
|
||
if (type == '1') {
|
||
that.imp = parseInt(value.substring(8, 12), 16) / 10
|
||
}
|
||
that.typeInfo = 1
|
||
that.text = that.$t("StableWeight")+ weight + that.unit
|
||
that.weight = weight
|
||
that.stopblue = true
|
||
that.$ble.stopBluetoothDevicesDiscovery() //取消蓝牙搜索
|
||
console.log("测量完成", that.weight, that.imp)
|
||
}
|
||
return;
|
||
}
|
||
})
|
||
});
|
||
},
|
||
// 保存测量结果
|
||
handleGetMeasure() {
|
||
let that = this
|
||
if (!that.height) {
|
||
this.$tools.msg(that.$t("verifyHeight"))
|
||
return
|
||
}
|
||
that.$model.getmeasurefunit({
|
||
adc: that.imp,
|
||
weight: that.weight + that.unit,
|
||
height: that.height,
|
||
aud_id: that.user.aud_id,
|
||
}).then(res => {
|
||
that.isHeight = false
|
||
if (res.code == 0) {
|
||
that.$store.dispatch('getUserInfo', {
|
||
aud_id: that.user.aud_id
|
||
})
|
||
that.$store.dispatch("getResult", {
|
||
aud_id: that.user.aud_id
|
||
})
|
||
that.$tools.msg(that.$t("msgSuccess"))
|
||
} else {
|
||
that.$tools.msg(that.$t("msgFail"))
|
||
}
|
||
setTimeout(function() {
|
||
that.handleBack()
|
||
}, 200)
|
||
})
|
||
},
|
||
//
|
||
handleBack() {
|
||
let that = this
|
||
that.text = ""
|
||
uni.switchTab({
|
||
url: "/pages/index/index"
|
||
})
|
||
},
|
||
},
|
||
}
|
||
</script>
|
||
|
||
<style scoped lang="scss">
|
||
.image3 {
|
||
width: 200px !important;
|
||
height: 340px !important;
|
||
}
|
||
</style> |