huminmin
2026-07-30 e1570f458b2ab42bb1a212be8de63134a50b2af1
src/views/officeProcessAutomation/ApproveManage/approve-list/useApproveList.js
@@ -192,11 +192,11 @@
          disabled: (row) => row.approvalStatus !== "pending" || !row.isApprove,
          clickFun: (row) => openApprove(row),
        },
        {
          name: "删除",
          type: "danger",
          clickFun: (row) => removeInstance(row),
        },
        // {
        //   name: "删除",
        //   type: "danger",
        //   clickFun: (row) => removeInstance(row),
        // },
      ],
    },
  ]);
@@ -323,6 +323,11 @@
        detailData.value = res?.data || res || {};
      }
    }
    // 报工审批:直接展示审批填报内容
    else if (row.businessType === 19) {
      detailData.value = {};
    }
    
    // 其他审批类型
    else {
@@ -367,6 +372,11 @@
        const res = await getDeliveryDetailByShippingNo({ shippingNo });
        detailData.value = res?.data || res || {};
      }
    }
    // 报工审批:直接展示审批填报内容
    else if (row.businessType === 19) {
      detailData.value = {};
    }
    // 其他审批类型
@@ -699,4 +709,4 @@
    openApprove,
    fetchApprovalList,
  };
}
}