Browse Source

处理统计空值显示不对问题

newMaster
1747191978@qq.com 4 months ago
parent
commit
6f8d605f0f
  1. 4
      acupuncture-前台/src/views/indexCom/JM.vue
  2. 2
      acupuncture-前台/src/views/indexCom/patient.vue

4
acupuncture-前台/src/views/indexCom/JM.vue

@ -169,7 +169,7 @@
for (let key in txfb) {
let data = {
name: this.systemObj[key],
value: txfb[key],
value: txfb[key] || 0,
};
this.systemValue.push(data);
}
@ -180,7 +180,7 @@
for (let key in zytz) {
let data = {
name: this.physiqueObj[key],
value: zytz[key],
value: zytz[key] || 0,
};
this.physiqueValue.push(data);
}

2
acupuncture-前台/src/views/indexCom/patient.vue

@ -167,7 +167,7 @@
for (let key in diseaseValue) {
let data = {
name: this.jwbzObj[key],
value: diseaseValue[key]
value: diseaseValue[key] || 0
}
this.diseaseValue.push(data)
}

Loading…
Cancel
Save