@7365admin1/layer-common 3.0.30-staging.7 → 3.0.30-staging.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -305,31 +305,38 @@
|
|
|
305
305
|
|
|
306
306
|
<v-divider />
|
|
307
307
|
|
|
308
|
-
<v-
|
|
309
|
-
<v-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
class="
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
308
|
+
<v-toolbar class="pa-0" density="compact">
|
|
309
|
+
<v-row no-gutters>
|
|
310
|
+
<v-col cols="6" class="pa-0">
|
|
311
|
+
<v-btn
|
|
312
|
+
block
|
|
313
|
+
variant="text"
|
|
314
|
+
class="text-none"
|
|
315
|
+
size="large"
|
|
316
|
+
height="48"
|
|
317
|
+
:disabled="rejectModal.submitting"
|
|
318
|
+
@click="closeRejectDialog"
|
|
319
|
+
>
|
|
320
|
+
Cancel
|
|
321
|
+
</v-btn>
|
|
322
|
+
</v-col>
|
|
323
|
+
|
|
324
|
+
<v-col cols="6" class="pa-0">
|
|
325
|
+
<v-btn
|
|
326
|
+
block
|
|
327
|
+
variant="flat"
|
|
328
|
+
color="black"
|
|
329
|
+
class="text-none font-weight-bold rounded-0"
|
|
330
|
+
height="48"
|
|
331
|
+
:loading="rejectModal.submitting"
|
|
332
|
+
:disabled="!isRejectModalValid || rejectModal.submitting"
|
|
333
|
+
@click="submitRejectDialog"
|
|
334
|
+
>
|
|
335
|
+
Confirm
|
|
336
|
+
</v-btn>
|
|
337
|
+
</v-col>
|
|
338
|
+
</v-row>
|
|
339
|
+
</v-toolbar>
|
|
333
340
|
</v-card>
|
|
334
341
|
</v-dialog>
|
|
335
342
|
|
|
@@ -59,6 +59,21 @@
|
|
|
59
59
|
</v-col>
|
|
60
60
|
</v-row>
|
|
61
61
|
|
|
62
|
+
<v-dialog v-model="showPhotoPreview" max-width="900">
|
|
63
|
+
<v-card>
|
|
64
|
+
<v-card-actions class="pa-2 justify-end">
|
|
65
|
+
<v-btn
|
|
66
|
+
icon="mdi-close"
|
|
67
|
+
variant="text"
|
|
68
|
+
@click="showPhotoPreview = false"
|
|
69
|
+
/>
|
|
70
|
+
</v-card-actions>
|
|
71
|
+
<v-card-text class="pa-2 pt-0">
|
|
72
|
+
<v-img :src="selectedPhoto" contain max-height="80vh" />
|
|
73
|
+
</v-card-text>
|
|
74
|
+
</v-card>
|
|
75
|
+
</v-dialog>
|
|
76
|
+
|
|
62
77
|
<v-dialog v-model="photoOptionsDialog" max-width="420">
|
|
63
78
|
<v-card>
|
|
64
79
|
<v-card-title class="d-flex align-center pa-4">
|
|
@@ -196,6 +211,8 @@ const photos = ref<string[]>([...props.modelValue]);
|
|
|
196
211
|
const photosIds = ref<string[]>([...props.photoIds]);
|
|
197
212
|
const photoOptionsDialog = ref(false);
|
|
198
213
|
const showCameraDialog = ref(false);
|
|
214
|
+
const showPhotoPreview = ref(false);
|
|
215
|
+
const selectedPhoto = ref("");
|
|
199
216
|
const videoRef = ref<HTMLVideoElement | null>(null);
|
|
200
217
|
const canvasRef = ref<HTMLCanvasElement | null>(null);
|
|
201
218
|
const fileInputRef = ref<HTMLInputElement | null>(null);
|
|
@@ -205,10 +222,8 @@ const uploading = ref(false);
|
|
|
205
222
|
const { addFile } = useFile();
|
|
206
223
|
|
|
207
224
|
function viewPhoto(photoData: string) {
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
link.target = "_blank";
|
|
211
|
-
link.click();
|
|
225
|
+
selectedPhoto.value = photoData;
|
|
226
|
+
showPhotoPreview.value = true;
|
|
212
227
|
}
|
|
213
228
|
|
|
214
229
|
watch(
|