fix msg request and addAdmin msg

This commit is contained in:
Paolo Arena
2022-09-20 11:14:08 +02:00
parent 2d068d00e7
commit 1f31776aa9
7 changed files with 12 additions and 12 deletions

View File

@@ -367,7 +367,7 @@ export default defineComponent({
}) })
$router.beforeResolve((to: any) => { $router.beforeResolve((to: any) => {
console.log('beforeResolve', visupagedialog.value, 'to', to) // console.log('beforeResolve', visupagedialog.value, 'to', to)
if (visupagedialog.value && !to.meta.newpage) { if (visupagedialog.value && !to.meta.newpage) {
// visupagedialog.value = false // visupagedialog.value = false

View File

@@ -750,7 +750,7 @@
</template> </template>
</q-table> </q-table>
<q-dialog v-model="visupagedialog" @hide="hidewindow" :maximized="$q.screen.lt.sm" persistent> <q-dialog v-model="visupagedialog" @hide="hidewindow" :maximized="$q.screen.lt.sm">
<CMyCardGrpPopup <CMyCardGrpPopup
v-if="mytable === toolsext.TABMYGROUPS" v-if="mytable === toolsext.TABMYGROUPS"
:table="mytable" :table="mytable"

View File

@@ -283,7 +283,7 @@ export default defineComponent({
} }
function changeval(newval: any) { function changeval(newval: any) {
console.log('changeval update:row', newval) // console.log('changeval update:row', newval)
if (!props.isrec) { if (!props.isrec) {
emit('update:row', props.row) emit('update:row', props.row)
} }

View File

@@ -220,7 +220,7 @@ export default defineComponent({
function changeval(newval: any) { function changeval(newval: any) {
console.log(' ½½½½½½½ changeval', newval) // console.log(' ½½½½½½½ changeval', newval)
if (props.multiple || props.multiselect_by_server) { if (props.multiple || props.multiselect_by_server) {
// tools.localStSetItem(props.tablesel + '_' + newval, valori.value[newval]) // tools.localStSetItem(props.tablesel + '_' + newval, valori.value[newval])
@@ -474,8 +474,8 @@ export default defineComponent({
function filterFn(val: any, update: any, abort: any) { function filterFn(val: any, update: any, abort: any) {
update( update(
async () => { async () => {
console.log('Filter val', val, val.length) // console.log('Filter val', val, val.length)
console.log('props.filter_extra', props.filter_extra) // console.log('props.filter_extra', props.filter_extra)
let myarr: any = [] let myarr: any = []

View File

@@ -510,8 +510,8 @@ const baseroutes: IListRoutes[] = [
name: 'mypages.provapao', name: 'mypages.provapao',
component: () => import('@/root/provapao/provapao.vue'), component: () => import('@/root/provapao/provapao.vue'),
meta: { requiresAuth: true }, meta: { requiresAuth: true },
inmenu: true, inmenu: false,
infooter: true, infooter: false,
}, },
{ {
active: true, active: true,

View File

@@ -11,7 +11,7 @@ const msg_it = {
guida_passopasso: 'Guida Passo Passo', guida_passopasso: 'Guida Passo Passo',
}, },
export: { export: {
csv: 'Esporta in CSV', csv: 'Esporta Movimenti',
}, },
grid: { grid: {
editvalues: 'Modifica Valori', editvalues: 'Modifica Valori',
@@ -1141,7 +1141,7 @@ const msg_it = {
img_logo: 'NomeFile Logo', img_logo: 'NomeFile Logo',
regulation: 'Regolamento', regulation: 'Regolamento',
disclaimer: 'Questo Strumento vuole essere un\'aiuto per contabilizzare gli scambi tra utenti. ' + disclaimer: 'Questo Strumento vuole essere un\'aiuto per contabilizzare gli scambi tra utenti. ' +
'Consigliamo vivamente di scaricarsi con frequenza le transazioni utenti, per ogni possibile evento imprevisto ' + 'Consigliamo vivamente di scaricarsi con frequenza la lista dei movimenti degli utenti (bottone "Esporta"), per ogni possibile evento imprevisto ' +
'(Server inaccessibile, ecc..) declinando così il creatore della APP da ogni responsabilità su come' + '(Server inaccessibile, ecc..) declinando così il creatore della APP da ogni responsabilità su come' +
'verrà utilizzata dal gruppo. ', 'verrà utilizzata dal gruppo. ',
acceptregulation: 'Accetta il Regolamento', acceptregulation: 'Accetta il Regolamento',

View File

@@ -5412,7 +5412,7 @@ export const tools = {
const userStore = useUserStore() const userStore = useUserStore()
$q.dialog({ $q.dialog({
message: domanda ? domanda : t('db.domanda_addadminofcircuit', { username, circuitname }), message: domanda ? domanda : t('circuit.domanda_addadminofcircuit', { username, circuitname }),
ok: { label: t('dialog.yes'), push: true }, ok: { label: t('dialog.yes'), push: true },
cancel: { label: t('dialog.cancel') }, cancel: { label: t('dialog.cancel') },
title: t('db.domanda') title: t('db.domanda')
@@ -5437,7 +5437,7 @@ export const tools = {
const userStore = useUserStore() const userStore = useUserStore()
$q.dialog({ $q.dialog({
message: domanda ? domanda : t('db.domanda_removeadminofcircuit', { username, circuitname }), message: domanda ? domanda : t('circuit.domanda_removeadminofcircuit', { username, circuitname }),
ok: { label: t('dialog.yes'), push: true }, ok: { label: t('dialog.yes'), push: true },
cancel: { label: t('dialog.cancel') }, cancel: { label: t('dialog.cancel') },
title: t('db.domanda') title: t('db.domanda')