This commit is contained in:
2021-04-30 23:54:22 +00:00
parent b712865274
commit 59a581956f
12 changed files with 45 additions and 15 deletions

View File

@@ -82,7 +82,7 @@
</div> </div>
</v-card-title> </v-card-title>
<div <div
class="headline ml-3 accent--text" class="text-h5 ml-3 accent--text"
v-if="!loading && records.length < 1" v-if="!loading && records.length < 1"
> >
{{ $ay.t("NoData") }} {{ $ay.t("NoData") }}

View File

@@ -12,7 +12,7 @@
data-cy="reportselector" data-cy="reportselector"
> >
<v-card elevation="24"> <v-card elevation="24">
<v-card-title class="headline lighten-2" primary-title> <v-card-title class="text-h5 lighten-2" primary-title>
<span> {{ $ay.t("Report") }} </span> <span> {{ $ay.t("Report") }} </span>
</v-card-title> </v-card-title>

View File

@@ -15,7 +15,7 @@
<v-dialog v-model="openDialog"> <v-dialog v-model="openDialog">
<v-card> <v-card>
<v-card-title> <v-card-title>
<span class="headline">{{ $ay.t("Address") }}</span> <span class="text-h5">{{ $ay.t("Address") }}</span>
</v-card-title> </v-card-title>
<v-card-text> <v-card-text>
<v-row> <v-row>
@@ -315,6 +315,26 @@
</v-card> </v-card>
</v-dialog> </v-dialog>
</v-row> </v-row>
<v-dialog v-model="openSelectDialog">
<v-card>
<v-card-title>
<span class="text-h5">{{ $ay.t("SelectAlternateAddress") }}</span>
</v-card-title>
<v-card-text>
<span class="text-h5">{{ $ay.t("SelectAlternateAddress") }}</span
><br />
<span class="text-h5">{{ $ay.t("SelectAlternateAddress") }}</span>
</v-card-text>
<v-card-actions>
<v-spacer></v-spacer>
<v-btn color="blue darken-1" text @click="close()">{{
$ay.t("OK")
}}</v-btn>
</v-card-actions>
</v-card>
</v-dialog>
</div> </div>
</template> </template>
<script> <script>
@@ -324,7 +344,11 @@
export default { export default {
data() { data() {
return { openDialog: false }; return {
openDialog: false,
openSelectDialog: false,
selectType: 1 //1==service / physical, 2==billing / postal
};
}, },
props: { props: {
@@ -355,8 +379,14 @@ export default {
window.$gz.form.fieldValueChanged(this.pvm, ref); window.$gz.form.fieldValueChanged(this.pvm, ref);
} }
}, },
AddressSelectAlternatePostal() {}, AddressSelectAlternatePostal() {
AddressSelectAlternatePhysical() {}, this.selectType = 2;
this.openSelectDialog = true;
},
AddressSelectAlternatePhysical() {
this.selectType = 1;
this.openSelectDialog = true;
},
AddressCopyToPostal() { AddressCopyToPostal() {
this.value.postAddress = this.value.address; this.value.postAddress = this.value.address;
this.value.postCity = this.value.city; this.value.postCity = this.value.city;

View File

@@ -25,7 +25,7 @@
<v-dialog v-model="openDialog" max-width="600px"> <v-dialog v-model="openDialog" max-width="600px">
<v-card> <v-card>
<v-card-title> <v-card-title>
<span class="headline">{{ $ay.t("WorkOrderStatus") }}</span> <span class="text-h5">{{ $ay.t("WorkOrderStatus") }}</span>
</v-card-title> </v-card-title>
<v-card-text> <v-card-text>
<template v-if="$vuetify.breakpoint.smAndUp"> <template v-if="$vuetify.breakpoint.smAndUp">

View File

@@ -28,7 +28,7 @@
<v-dialog v-model="moveDialog" persistent max-width="600px"> <v-dialog v-model="moveDialog" persistent max-width="600px">
<v-card> <v-card>
<v-card-title> <v-card-title>
<span class="headline">{{ $ay.t("MoveSelected") }}</span> <span class="text-h5">{{ $ay.t("MoveSelected") }}</span>
</v-card-title> </v-card-title>
<v-card-text> <v-card-text>
<v-select <v-select

View File

@@ -6,7 +6,7 @@
<v-dialog v-model="replaceDialog" persistent max-width="600px"> <v-dialog v-model="replaceDialog" persistent max-width="600px">
<v-card> <v-card>
<v-card-title> <v-card-title>
<span class="headline">{{ $ay.t("FindAndReplace") }}</span> <span class="text-h5">{{ $ay.t("FindAndReplace") }}</span>
</v-card-title> </v-card-title>
<v-card-text> <v-card-text>
<v-text-field <v-text-field

View File

@@ -4,7 +4,7 @@
<v-dialog v-model="seedDialog" persistent max-width="600px"> <v-dialog v-model="seedDialog" persistent max-width="600px">
<v-card> <v-card>
<v-card-title> <v-card-title>
<span class="headline mb-2">{{ <span class="text-h5 mb-2">{{
$ay.t("GenerateSampleData") $ay.t("GenerateSampleData")
}}</span> }}</span>
</v-card-title> </v-card-title>

View File

@@ -10,7 +10,7 @@
data-cy="dashSelector" data-cy="dashSelector"
> >
<v-card elevation="24"> <v-card elevation="24">
<v-card-title class="headline lighten-2" primary-title> <v-card-title class="text-h5 lighten-2" primary-title>
<span> {{ $ay.t("Add") }} </span> <span> {{ $ay.t("Add") }} </span>
</v-card-title> </v-card-title>

View File

@@ -4,7 +4,7 @@
<v-dialog v-model="tfaDialog" persistent max-width="600px"> <v-dialog v-model="tfaDialog" persistent max-width="600px">
<v-card> <v-card>
<v-card-title> <v-card-title>
<span class="headline">{{ authTwoFactor }}</span> <span class="text-h5">{{ authTwoFactor }}</span>
</v-card-title> </v-card-title>
<v-card-text> <v-card-text>
<v-text-field <v-text-field

View File

@@ -3,7 +3,7 @@
<v-col cols="12"> <v-col cols="12">
<div class="text-center"> <div class="text-center">
<v-icon color="red" size="100">$ayiDragon</v-icon> <v-icon color="red" size="100">$ayiDragon</v-icon>
<div class="headline mt-8"> <div class="text-h5 mt-8">
{{ msg }} {{ msg }}
</div> </div>
</div> </div>

View File

@@ -4,7 +4,7 @@
<v-dialog v-model="testDialog" persistent max-width="600px"> <v-dialog v-model="testDialog" persistent max-width="600px">
<v-card> <v-card>
<v-card-title> <v-card-title>
<span class="headline">{{ $ay.t("TestSMTPSettings") }}</span> <span class="text-h5">{{ $ay.t("TestSMTPSettings") }}</span>
</v-card-title> </v-card-title>
<v-card-text> <v-card-text>
<v-text-field <v-text-field

View File

@@ -207,7 +207,7 @@
<v-dialog v-model="woSelectorDialog" persistent max-width="300px"> <v-dialog v-model="woSelectorDialog" persistent max-width="300px">
<v-card> <v-card>
<v-card-title> <v-card-title>
<span class="headline">{{ <span class="text-h5">{{
$ay.t("CustomerServiceRequestAcceptToExisting") $ay.t("CustomerServiceRequestAcceptToExisting")
}}</span> }}</span>
</v-card-title> </v-card-title>