- 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 ''
}
}
}

View File

@@ -143,6 +143,13 @@
</q-table>
<div v-if="rowclicksel">
<div v-if="(prop_mytable === 'users') && tools.appid() === '7'">
<CMyDashboard :username="getusernamesel">
</CMyDashboard>
</div>
<CTitleBanner title="Record:"></CTitleBanner>
<div class="q-ma-xs q-pa-xs text-center rounded-borders q-list--bordered"
@@ -179,6 +186,6 @@
<script lang="ts" src="./CGridTableRec.ts">
</script>
<style lang="scss" >
<style lang="scss">
@import './CGridTableRec.scss';
</style>