- Added Delete Record to the CGridTableRec
This commit is contained in:
@@ -1,5 +1,6 @@
|
||||
import { IAction } from '@src/model/Projects'
|
||||
import { Component } from 'vue-router/types/router'
|
||||
import { lists } from '@src/store/Modules/lists'
|
||||
|
||||
export interface IPost {
|
||||
title: string
|
||||
@@ -83,6 +84,7 @@ export interface IListRoutes {
|
||||
infooter?: boolean
|
||||
submenu?: boolean
|
||||
onlyAdmin?: boolean
|
||||
onlyManager?: boolean
|
||||
meta?: any
|
||||
idelem?: string
|
||||
urlroute?: string
|
||||
@@ -209,3 +211,17 @@ export interface IParamsQuery {
|
||||
sortBy: any
|
||||
descending: number
|
||||
}
|
||||
|
||||
export interface IColGridTable {
|
||||
name: string
|
||||
required: boolean
|
||||
label?: string
|
||||
label_trans?: string
|
||||
align?: string
|
||||
field?: string
|
||||
sortable?: boolean
|
||||
disable?: boolean
|
||||
titlepopupedit?: string
|
||||
icon?: string
|
||||
action?: any
|
||||
}
|
||||
|
||||
@@ -33,6 +33,7 @@ export interface IUserState {
|
||||
x_auth_token?: string
|
||||
isLogged?: boolean
|
||||
isAdmin?: boolean
|
||||
isManager?: boolean
|
||||
usersList?: IUserList[]
|
||||
countusers?: number
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user