huminmin
2026-03-23 168e8d7c28ef162e28171392a37df09cdc1187c2
src/views/productionManagement/workOrder/index.vue
@@ -709,7 +709,7 @@
const handleReport = async () => {
  const data = await productionRecordFormRef.value.submitData()
  reportForm.otherData.rows = JSON.stringify(data || {});
  reportForm.otherData.rows = data || [];
  reportFormRef.value?.validate((valid) => {
    if (!valid) {
      return false;
@@ -761,7 +761,8 @@
    const submitData = {
      ...reportForm,
      quantity: quantity,
      scrapQty: scrapQty
      scrapQty: scrapQty,
      otherData: JSON.stringify(reportForm.otherData)
    };
    // console.log(submitData);