- Üyelik sözleşmesi ve kvkk pdf eklendi, kaydol sayfasından link verildi

- aracı firma sadece onaylı üyeleri listede görecek
This commit is contained in:
Kevser
2025-07-17 15:30:42 +03:00
parent 85fe0fb6ba
commit 2aee11cf9a
4 changed files with 19 additions and 8 deletions

Binary file not shown.

Binary file not shown.

View File

@ -3,9 +3,7 @@
<section class="section-login"> <section class="section-login">
<div class="login-header"> <div class="login-header">
<div class="logo-header"> <div class="logo-header">
<img <img src="@/assets/images/cekilisevi-logo-1.png" alt="MPI Çekiliş Evi" />
src="@/assets/images/cekilisevi-logo-1.png"
alt="MPI Çekiliş Evi"/>
</div> </div>
<h1>Üye Ol</h1> <h1>Üye Ol</h1>
</div> </div>
@ -306,7 +304,12 @@
:invalidText="uyeBilgileriStore.invalidTexts.kvkk"> :invalidText="uyeBilgileriStore.invalidTexts.kvkk">
<template #checktext0> <template #checktext0>
<span> <span>
<a href="#">KVKK Şartlarını</a> <a
href="/data/kvkk-sartlari.pdf"
target="_blank"
rel="noopener noreferrer">
KVKK Şartlarını
</a>
Kabul Ediyorum Kabul Ediyorum
</span> </span>
</template> </template>
@ -320,7 +323,12 @@
:invalidText="uyeBilgileriStore.invalidTexts.uyelikSozlesmesi"> :invalidText="uyeBilgileriStore.invalidTexts.uyelikSozlesmesi">
<template #checktext0> <template #checktext0>
<span> <span>
<a href="#">Üyelik Sözleşmesi Şartlarını</a> <a
href="/data/cekilisevi-gov-tr-uyelik-sozlesmesi.pdf"
target="_blank"
rel="noopener noreferrer">
Üyelik Sözleşmesi Şartlarını
</a>
Kabul Ediyorum Kabul Ediyorum
</span> </span>
</template> </template>
@ -409,7 +417,8 @@
if (register !== 'errorfalse') { if (register !== 'errorfalse') {
authValidationStore.registerMessage = register.message authValidationStore.registerMessage = register.message
authValidationStore.loginMessageType = 'success' authValidationStore.loginMessageType = 'success'
authValidationStore.loginMessage = 'Başarıyla kayıt oldunuz. Kullanıcı adı ve şifreniz ile giriş yapabilirsiniz.' authValidationStore.loginMessage =
'Başarıyla kayıt oldunuz. Kullanıcı adı ve şifreniz ile giriş yapabilirsiniz.'
authValidationStore.isLoginMessage = true authValidationStore.isLoginMessage = true
router.push('/login') router.push('/login')
@ -419,7 +428,6 @@
} }
} }
onBeforeMount(async () => { onBeforeMount(async () => {
await dataStore.GetCustomerTipList() await dataStore.GetCustomerTipList()
await dataStore.GetIlList() await dataStore.GetIlList()

View File

@ -601,7 +601,10 @@
: piyangoStore.lotteryData.baglisirketId : piyangoStore.lotteryData.baglisirketId
let list = await dataStore.dataGet('Auth/userbyuserChildList/' + id) let list = await dataStore.dataGet('Auth/userbyuserChildList/' + id)
childUsers.value = list.data
childUsers.value = list.data.filter((p:Record<string,any>) => {
return p.islemTipId === 4 || p.islemTipi === 'Üyelik Onaylandı'
})
if (!piyangoStore.isNew) { if (!piyangoStore.isNew) {
await GetDuzenleyen(piyangoStore.lotteryData.duzenleyenId) await GetDuzenleyen(piyangoStore.lotteryData.duzenleyenId)