Browse Source

fix: 修复反应板数目设置为0时 不更新的Bug

relver
zhangjiming 7 months ago
parent
commit
f5ddb57030
  1. 2
      src/pages/Index/components/Consumables/SpttingPlates.vue

2
src/pages/Index/components/Consumables/SpttingPlates.vue

@ -38,7 +38,7 @@
:color="consumableStore.projIdColorMap[[plates[i - 1].projId]]"
/>
<SliderAreaEx
v-if="plates[i - 1].num > 0"
v-if="plates[i - 1].num >= 0"
class="slider-area"
:currValue="parseInt(plates[i - 1].num)"
:totalValue="totalVal"

Loading…
Cancel
Save