|
|
@@ -802,7 +802,9 @@ const consumeFormRef = ref<FormInstance>();
|
|
|
const overviewRef = ref<InstanceType<typeof AccountOverview>>();
|
|
|
|
|
|
const currentEnterpriseId = computed(() => enterpriseStore.getCurrentEnterprise?.enterprise_id);
|
|
|
-const hasTransferPermission = computed(() => enterpriseStore.getCurrentEnterprise?.transfer_enabled === true);
|
|
|
+const hasTransferPermission = computed(() =>
|
|
|
+ userStore.is_platform_user || enterpriseStore.getCurrentEnterprise?.transfer_enabled === true
|
|
|
+);
|
|
|
const cureentEnterprise = computed(() => enterpriseStore.getCurrentEnterprise);
|
|
|
|
|
|
const accountInfo = ref<{
|