@7365admin1/layer-common 3.0.31-staging.24 → 3.0.31-staging.26
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.
|
@@ -97,7 +97,10 @@
|
|
|
97
97
|
Rejected
|
|
98
98
|
</v-chip>
|
|
99
99
|
</div>
|
|
100
|
-
<div
|
|
100
|
+
<div
|
|
101
|
+
v-if="item.remarks"
|
|
102
|
+
class="text-body-2 text-medium-emphasis"
|
|
103
|
+
>
|
|
101
104
|
{{ item.remarks }}
|
|
102
105
|
</div>
|
|
103
106
|
<div
|
|
@@ -225,11 +228,7 @@
|
|
|
225
228
|
<v-card-text class="pa-4">
|
|
226
229
|
<v-row>
|
|
227
230
|
<v-col cols="12">
|
|
228
|
-
<InputLabel
|
|
229
|
-
title="Remarks (Optional)"
|
|
230
|
-
:required="false"
|
|
231
|
-
class="mb-2"
|
|
232
|
-
/>
|
|
231
|
+
<InputLabel title="Remarks" :required="false" class="mb-2" />
|
|
233
232
|
<v-textarea
|
|
234
233
|
v-model="modalData.remark"
|
|
235
234
|
placeholder="Enter your remarks here"
|
|
@@ -243,7 +242,7 @@
|
|
|
243
242
|
<v-col cols="12">
|
|
244
243
|
<v-divider class="mb-4" />
|
|
245
244
|
<PhotoUpload
|
|
246
|
-
title="Take/Upload
|
|
245
|
+
title="Take/Upload Photos"
|
|
247
246
|
:required="false"
|
|
248
247
|
v-model="modalData.photos"
|
|
249
248
|
v-model:photo-ids="modalData.photoIds"
|
|
@@ -442,12 +441,12 @@ const { back } = useUtils();
|
|
|
442
441
|
const route = useRoute();
|
|
443
442
|
const scheduleTitle = computed(() => {
|
|
444
443
|
const path = route.path;
|
|
445
|
-
if (path.includes(
|
|
446
|
-
if (path.includes(
|
|
447
|
-
if (path.includes(
|
|
448
|
-
if (path.includes(
|
|
449
|
-
if (path.includes(
|
|
450
|
-
return
|
|
444
|
+
if (path.includes("cleaning-schedule")) return "Cleaning Checklist";
|
|
445
|
+
if (path.includes("technician-schedule")) return "Technician Checklist";
|
|
446
|
+
if (path.includes("landscape-schedule")) return "Landscape Checklist";
|
|
447
|
+
if (path.includes("pool-schedule")) return "Pool Checklist";
|
|
448
|
+
if (path.includes("pest-schedule")) return "Pest Checklist";
|
|
449
|
+
return "Cleaner Checklist";
|
|
451
450
|
});
|
|
452
451
|
|
|
453
452
|
const canAddRemarks = computed(() => props.canAddRemarks);
|