Commit 8cff9805 authored by songrui's avatar songrui

Merge branch 'chronic-dev' into 'chronic-master'

Chronic dev

See merge request !3
parents d6075159 84d08131
......@@ -94,7 +94,7 @@ export default {
},
loadDevice() {
// 372 ||
getPressureDevices(372 || this.authInfo.unitId).then(res => {
getPressureDevices(this.authInfo.unitId).then(res => {
console.log('getPressureDevices', res)
this.deviceList = res.data || []
if (!this.deviceList.length) {
......@@ -118,7 +118,7 @@ export default {
}
this.loopMark++
// '06B32312010330' ||
getPressureData('06B32312010330' || this.deviceNo).then(res => {
getPressureData(this.deviceNo).then(res => {
const result = res.data || []
if (result.length) {
let val = result[result.length - 1]
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment