-
-
+
+
+
-
-
Afiliación
-
- Personaliza tu página de afiliado, compártela con los clientes a través del siguiente enlace.
-
-
+
+
-
+
+
Compartir
+
+ Compárte tu página de afiliado con los clientes a través del siguiente enlace.
+
+
-
+
+
+
+
+
+
+
+
+
+
+
Textos
+
+ Añade un título corto y una descripción sobre tu invitación al cliente.
+
+
+
+
+
+
+
+
+
+
+
+
+
-
+
+
+
+
+
+
@code {
+ private AffiliateStyle? customStyle;
+ private String customTitle = "";
+ private String customDescription = "";
+
+ protected override async Task OnInitializedAsync()
+ {
+ SetCustomStyle();
+ }
+
+ private void SetCustomStyle()
+ {
+ customStyle = UserService.GetAffiliateStyle(UserService.GetLoggedUser().GetId());
+
+ //Recover data
+ if (customStyle != null)
+ {
+ customTitle = customStyle.GetTitle();
+ customDescription = customStyle.GetSummary();
+ }
+ }
+
private String GetAbsoluteUri()
{
//Detect if it's from localhost or online, change the uri depending of that