Update TabPiyangoTalihliListesi.vue to simplify button visibility logic by removing the lottery draw state condition. Add a new table header for 'Kazanan Çekiliş No' with adjusted styling for improved layout consistency.
This commit is contained in:
@ -16,7 +16,7 @@
|
||||
<button
|
||||
class='button-c'
|
||||
@click='AddNewDocument'
|
||||
v-if='!usersStore.isPanelUser && !piyangoStore.lotteryDrawState && piyangoStore.lotteryData.cekilisYontemi =="Fiziksel"'>
|
||||
v-if='!usersStore.isPanelUser && piyangoStore.lotteryData.cekilisYontemi =="Fiziksel"'>
|
||||
Talihli Dosyası Yükle
|
||||
</button>
|
||||
</template>
|
||||
@ -74,11 +74,17 @@
|
||||
import { connectToHub, onCompleted, onProgress } from '@/module/cekilisler/service/signalrService'
|
||||
const usersStore = useUsersStore()
|
||||
const tableHeader = ref<Record<string, any>>([
|
||||
{
|
||||
name: 'kazananCekilisNo',
|
||||
title: 'Kazanan Çekiliş No',
|
||||
sort: true,
|
||||
style: { width: '15%' }
|
||||
},
|
||||
{
|
||||
name: 'cekilisKatilimSiraNo',
|
||||
title: 'Çekiliş Katılım Sıra No',
|
||||
sort: true,
|
||||
style: { width: '20%' }
|
||||
style: { width: '15%' }
|
||||
},
|
||||
{
|
||||
name: 'cekilisHakkiAdedi',
|
||||
|
||||
Reference in New Issue
Block a user