Browse Source

智能生猪饲喂系统,先转换为数字在进行判断

zswxt
lzp 4 months ago
parent
commit
3267660a50
  1. 3
      src/views/index.vue

3
src/views/index.vue

@ -118,6 +118,9 @@ export default {
//
this.value2 = false;
//
this.deviceInfo.weight = Number(this.deviceInfo.weight);
this.deviceInfo.threshold = Number(this.deviceInfo.threshold);
if (this.deviceInfo.weight < this.deviceInfo.threshold) {
this.value2 = true;
}

Loading…
Cancel
Save