- Downline User
- Not registered if already exists. - Forgot Password
This commit is contained in:
0
src/views/admin/dbop/dbop.scss
Normal file
0
src/views/admin/dbop/dbop.scss
Normal file
25
src/views/admin/dbop/dbop.ts
Normal file
25
src/views/admin/dbop/dbop.ts
Normal file
@@ -0,0 +1,25 @@
|
||||
import Vue from 'vue'
|
||||
import { Component } from 'vue-property-decorator'
|
||||
|
||||
import { GlobalStore } from '@store'
|
||||
import { tools } from '../../../store/Modules/tools'
|
||||
import { UserStore } from '../../../store/Modules'
|
||||
import { CTitleBanner } from '../../../components/CTitleBanner'
|
||||
|
||||
@Component({
|
||||
components: { CTitleBanner }
|
||||
})
|
||||
export default class Dbop extends Vue {
|
||||
public ris: string = ''
|
||||
|
||||
public async changeCellInt() {
|
||||
|
||||
const mydata = {
|
||||
dbop: 'changeCellInt'
|
||||
}
|
||||
|
||||
this.ris = await UserStore.actions.execDbOp({ mydata })
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
27
src/views/admin/dbop/dbop.vue
Normal file
27
src/views/admin/dbop/dbop.vue
Normal file
@@ -0,0 +1,27 @@
|
||||
<template>
|
||||
<div>
|
||||
<CTitleBanner title="Operazioni su DB:"></CTitleBanner>
|
||||
<div class="q-ma-md q-pa-sm text-center rounded-borders q-list--bordered">
|
||||
|
||||
<q-btn label="Passa i codici Telefoni sul campo cell" color="primary" @click="changeCellInt"></q-btn>
|
||||
</div>
|
||||
|
||||
|
||||
<q-field
|
||||
stack-label
|
||||
dense
|
||||
>
|
||||
<template v-slot:control>
|
||||
<div class="self-center full-width no-outline text-center" tabindex="0">{{ris}}</div>
|
||||
</template>
|
||||
|
||||
</q-field>
|
||||
|
||||
</div>
|
||||
</template>
|
||||
<script lang="ts" src="./dbop.ts">
|
||||
</script>
|
||||
|
||||
<style lang="scss" scoped>
|
||||
@import './dbop';
|
||||
</style>
|
||||
1
src/views/admin/dbop/index.ts
Normal file
1
src/views/admin/dbop/index.ts
Normal file
@@ -0,0 +1 @@
|
||||
export {default as dbop} from './dbop.vue'
|
||||
Reference in New Issue
Block a user