This commit is contained in:
2021-12-27 22:07:26 +00:00
parent 3fe021db0a
commit cd5176a22c
2 changed files with 24 additions and 3 deletions

View File

@@ -1,8 +1,8 @@
<template> <template>
<div> <div>
<v-overlay :value="rendering" z-index="999"> <!-- <v-overlay :value="rendering" z-index="999">
<v-progress-circular indeterminate size="64"></v-progress-circular> <v-progress-circular indeterminate size="64"></v-progress-circular>
</v-overlay> </v-overlay> -->
<v-row justify="center"> <v-row justify="center">
<v-dialog <v-dialog
scrollable scrollable
@@ -57,6 +57,27 @@
</v-card> </v-card>
</v-dialog> </v-dialog>
</v-row> </v-row>
<!-- ################################################################################-->
<!-- ########################## RENDERING FORM ####################################-->
<!-- ################################################################################-->
<template>
<v-row justify="center">
<v-dialog persistent max-width="600px" v-model="rendering">
<v-card>
<v-card-title>{{ $ay.t("RenderingReport") }}</v-card-title>
<v-card-text>
soemthing here
</v-card-text>
<v-card-actions>
<v-btn text @click="cancelJob" color="primary">{{
$ay.t("Cancel")
}}</v-btn>
</v-card-actions>
</v-card>
</v-dialog>
</v-row>
</template>
</div> </div>
</template> </template>
<script> <script>

View File

@@ -54,7 +54,7 @@ import durationControl from "./components/duration-control.vue";
import errorControl from "./components/error-control.vue"; import errorControl from "./components/error-control.vue";
import alertControl from "./components/alert-control.vue"; import alertControl from "./components/alert-control.vue";
import extensionsControl from "./components/extensions-control.vue"; import extensionsControl from "./components/extensions-control.vue";
import reportSelectorControl from "./components/report-selector-control.vue"; import reportSelectorControl from "./components/report-control.vue";
import wikiControl from "./components/wiki-control.vue"; import wikiControl from "./components/wiki-control.vue";
import attachmentControl from "./components/attachment-control.vue"; import attachmentControl from "./components/attachment-control.vue";
import chartLineControl from "./components/chart-line-control.vue"; import chartLineControl from "./components/chart-line-control.vue";