- Downline User

- Not registered if already exists.
- Forgot Password
This commit is contained in:
Paolo Arena
2020-01-30 01:20:23 +01:00
parent 3653b8309c
commit 1956e53d07
24 changed files with 325 additions and 408 deletions

View File

@@ -13,9 +13,10 @@ import { IParamsQuery } from '../../model/GlobalStore'
import { fieldsTable } from '../../store/Modules/fieldsTable'
import { CMyPopupEdit } from '../CMyPopupEdit'
import { CTitleBanner } from '../CTitleBanner'
import { CMyDashboard } from '../CMyDashboard'
@Component({
components: { CMyPopupEdit, CTitleBanner }
components: { CMyPopupEdit, CTitleBanner, CMyDashboard }
})
export default class CGridTableRec extends Vue {
@Prop({ required: true }) public prop_mytitle: string
@@ -384,6 +385,8 @@ export default class CGridTableRec extends Vue {
public refresh() {
this.serverData = []
this.search = this.search.trim()
// console.log('refresh')
// console.log('this.search', this.search)
if (!!this.search && this.search !== '')
@@ -552,4 +555,14 @@ export default class CGridTableRec extends Vue {
console.log('this.rowclicksel', this.rowclicksel)
}
get getusernamesel() {
try {
if (this.rowclicksel) {
return this.rowclicksel.username
}
} catch (e) {
return ''
}
}
}