- Bot Telegram ...
This commit is contained in:
@@ -206,7 +206,7 @@ export default class CGridTableRec extends Vue {
|
||||
const startRow = (page - 1) * rowsPerPage
|
||||
const endRow = startRow + fetchCount
|
||||
|
||||
console.log('startRow', startRow)
|
||||
// console.log('startRow', startRow)
|
||||
|
||||
this.serverData = []
|
||||
|
||||
@@ -382,7 +382,7 @@ export default class CGridTableRec extends Vue {
|
||||
public refresh() {
|
||||
this.serverData = []
|
||||
|
||||
console.log('refresh')
|
||||
// console.log('refresh')
|
||||
// console.log('this.search', this.search)
|
||||
if (!!this.search && this.search !== '')
|
||||
this.myfilter = this.search
|
||||
|
||||
@@ -1,32 +1,34 @@
|
||||
<template>
|
||||
<div>
|
||||
<q-banner
|
||||
inline-actions
|
||||
rounded dense
|
||||
:class="bgcolor+` q-my-md `+clcolor+ ` ` + myclass"
|
||||
style="text-align: center; "
|
||||
@click="myvisible = !myvisible"
|
||||
>
|
||||
<template v-slot:avatar>
|
||||
<q-icon v-if="canopen" :name="icon" color="white" />
|
||||
</template>
|
||||
<template v-slot:action>
|
||||
<q-icon v-if="canopen" :name="iconopen" color="white" />
|
||||
</template>
|
||||
<span :class="`mybanner `+ myclasstext" :style="mystyle">{{title}}</span>
|
||||
</q-banner>
|
||||
<div>
|
||||
<q-banner
|
||||
inline-actions
|
||||
rounded dense
|
||||
:class="bgcolor+` q-my-sm `+clcolor+ ` ` + myclass"
|
||||
style="text-align: center; "
|
||||
@click="myvisible = !myvisible"
|
||||
>
|
||||
<template v-slot:avatar>
|
||||
<q-icon v-if="canopen" :name="icon" color="white"/>
|
||||
</template>
|
||||
<template v-slot:action>
|
||||
<div class="cursor-pointer">
|
||||
<q-icon v-if="canopen" :name="iconopen" color="white"/>
|
||||
</div>
|
||||
</template>
|
||||
<span :class="`mybanner `+ myclasstext" :style="mystyle">{{title}}</span>
|
||||
</q-banner>
|
||||
|
||||
<q-slide-transition>
|
||||
<div v-show="myvisible">
|
||||
<slot></slot>
|
||||
</div>
|
||||
</q-slide-transition>
|
||||
<q-slide-transition>
|
||||
<div v-show="myvisible">
|
||||
<slot></slot>
|
||||
</div>
|
||||
</q-slide-transition>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script lang="ts" src="./CTitleBanner.ts">
|
||||
</script>
|
||||
<style lang="scss" scoped>
|
||||
@import './CTitleBanner.scss';
|
||||
@import './CTitleBanner.scss';
|
||||
</style>
|
||||
|
||||
@@ -340,7 +340,7 @@ export default class Header extends Vue {
|
||||
return UserStore.state.isLogged
|
||||
}
|
||||
|
||||
get isVerified() {
|
||||
get isEmailVerified() {
|
||||
return UserStore.state.my.verified_email
|
||||
}
|
||||
|
||||
|
||||
@@ -147,7 +147,7 @@
|
||||
{{ $t('user.loggati') }}
|
||||
</div>
|
||||
|
||||
<div v-if="isLogged && !isVerified" class="text-verified">{{
|
||||
<div v-if="isLogged && !isEmailVerified" class="text-verified">{{
|
||||
$t('components.authentication.email_verification.verify_email') }}
|
||||
</div>
|
||||
|
||||
|
||||
@@ -36,3 +36,4 @@ export * from './COpenStreetMap'
|
||||
export * from './CTitleBanner'
|
||||
export * from './CGallery'
|
||||
export * from './CProfile'
|
||||
export * from './CStatus'
|
||||
|
||||
Reference in New Issue
Block a user