+ Registered Users

+ UsersList Online
This commit is contained in:
Surya Paolo
2022-12-10 02:01:26 +01:00
parent aeeba5a6b9
commit cd31d2d020
18 changed files with 364 additions and 72 deletions

View File

@@ -28,6 +28,7 @@ import MixinBase from '@/mixins/mixin-base'
import MixinUsers from '@/mixins/mixin-users'
import { toolsext } from '@store/Modules/toolsext'
import { shared_consts } from '@/common/shared_vuejs'
import { useRouter } from 'vue-router'
export default defineComponent({
@@ -222,6 +223,8 @@ export default defineComponent({
const myImgGall = ref([{}] as IImgGallery[])
const $router = useRouter()
const col = ref(<IColGridTable>{
name: 'test',
fieldtype: 0,
@@ -770,6 +773,10 @@ export default defineComponent({
}
function gotoPage(link: string) {
$router.push(link)
}
function nameKeydown(e: any, col: any) {
if (col.allowchar === costanti.ALLOWCHAR_CODE) {
@@ -817,6 +824,7 @@ export default defineComponent({
myrow,
shared_consts,
nameKeydown,
gotoPage,
}
}
})