From 71946de0732b558027023358f4bbfaf5046a33fc Mon Sep 17 00:00:00 2001
From: wupengfei <834520024@qq.com>
Date: 星期五, 31 十月 2025 16:13:26 +0800
Subject: [PATCH] fix: bug
---
apps/cMiniApp/src/subpackages/task/components/CompanyInfo.vue | 6 +++++-
1 files changed, 5 insertions(+), 1 deletions(-)
diff --git a/apps/cMiniApp/src/subpackages/task/components/CompanyInfo.vue b/apps/cMiniApp/src/subpackages/task/components/CompanyInfo.vue
index 9ab43c1..cd952d0 100644
--- a/apps/cMiniApp/src/subpackages/task/components/CompanyInfo.vue
+++ b/apps/cMiniApp/src/subpackages/task/components/CompanyInfo.vue
@@ -50,11 +50,15 @@
type Props = {
enterpriseId?: string;
+ supplierEnterpriseId?: string;
};
const props = withDefaults(defineProps<Props>(), {});
-const { enterpriseDetail } = useEnterpriseDetail({ id: toRef(props, 'enterpriseId') });
+const { enterpriseDetail } = useEnterpriseDetail({
+ id: toRef(props, 'enterpriseId'),
+ supplierEnterpriseId: toRef(props, 'supplierEnterpriseId'),
+});
</script>
<style lang="scss">
--
Gitblit v1.9.1