|
@@ -397,6 +397,9 @@ const $q = useQuasar();
|
|
|
const router = useRouter();
|
|
const router = useRouter();
|
|
|
const store = userStore();
|
|
const store = userStore();
|
|
|
|
|
|
|
|
|
|
+const CLIENT_APP_STORE_URL =
|
|
|
|
|
+ "https://play.google.com/store/apps/details?id=br.com.diarista.client";
|
|
|
|
|
+
|
|
|
const favorites = ref([]);
|
|
const favorites = ref([]);
|
|
|
const highlightIndex = ref(0);
|
|
const highlightIndex = ref(0);
|
|
|
const loading = ref(false);
|
|
const loading = ref(false);
|
|
@@ -479,6 +482,9 @@ const openIndicateDialog = async (item) => {
|
|
|
const message = t("profile.favorites.indicate_whatsapp_message", {
|
|
const message = t("profile.favorites.indicate_whatsapp_message", {
|
|
|
city: item?.city_name ?? "",
|
|
city: item?.city_name ?? "",
|
|
|
name: item?.provider_name ?? "",
|
|
name: item?.provider_name ?? "",
|
|
|
|
|
+ code: item?.share_code ?? "",
|
|
|
|
|
+ link: CLIENT_APP_STORE_URL,
|
|
|
|
|
+ button: t("profile.favorites.code_btn"),
|
|
|
});
|
|
});
|
|
|
|
|
|
|
|
try {
|
|
try {
|