zhengyiming
2025-11-11 192bf4bb2e6ab13fc126ae83f98843622da329b9
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">