gongchunyi
14 小时以前 817f36a7678210c1137c8bd59ac1eb2da087acf1
fix: 产出数量字段错误
已修改1个文件
2 ■■■ 文件已修改
src/views/productionManagement/productStatistics/index.vue 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/productionManagement/productStatistics/index.vue
@@ -30,7 +30,7 @@
          {{ row.inputQuantity === 0 ? '-' : row.inputQuantity }}
        </template>
        <template #outputQuantitySlot="{ row }">
          {{ row.outputQuantity === 0 ? '-' : row.inputQuantity }}
          {{ row.outputQuantity === 0 ? '-' : row.outputQuantity }}
        </template>
      </PIMTable>
    </div>