- aggiornamenti guida RIS, FAQ
- Editor HTML aggiunto CSS e Script - Statistiche - CRISBalanceBar - Inizio Sync... (ma disattivato)
This commit is contained in:
@@ -10,6 +10,8 @@ $negative-color: #c10015;
|
||||
$info-color: #31ccec;
|
||||
$warning-color: #f2c037;
|
||||
|
||||
@use 'sass:color';
|
||||
|
||||
$grey-text: #555;
|
||||
$grey-light: #999;
|
||||
$grey-dark: #333;
|
||||
@@ -658,7 +660,7 @@ $gradient-hover: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118,
|
||||
|
||||
.accom_maxosp {
|
||||
font-weight: 600;
|
||||
background: linear-gradient(135deg, $primary-color, color-lighten($primary-color, 15%));
|
||||
background: linear-gradient(135deg, $primary-color, color.adjust($primary-color, $lightness: 15%));
|
||||
-webkit-background-clip: text;
|
||||
-webkit-text-fill-color: transparent;
|
||||
background-clip: text;
|
||||
|
||||
@@ -33,6 +33,8 @@ import translate from '@src/globalroutines/util'
|
||||
import { useMessageStore } from '@src/store/MessageStore'
|
||||
import mixinEvents from '@src/mixins/mixin-events'
|
||||
|
||||
import { colmyUserPeople } from '@store/Modules/fieldsTable';
|
||||
|
||||
export default defineComponent({
|
||||
name: 'CMyCardService',
|
||||
emits: ['showInMap'],
|
||||
@@ -429,7 +431,7 @@ export default defineComponent({
|
||||
return ris
|
||||
}
|
||||
|
||||
function saveBookEvent(myevent: IEvents) {
|
||||
function saveBookEvent() {
|
||||
|
||||
if (true) {
|
||||
// close the dialog
|
||||
@@ -543,9 +545,7 @@ export default defineComponent({
|
||||
}
|
||||
|
||||
function isAlreadyBooked() {
|
||||
// const calendarStore = useCalendarStore()
|
||||
// return calendarStore.findEventBooked(myrec.value._id, true)
|
||||
arrbookings.value.find((recbook: IBookedEvent) => recbook.userId === userStore.my._id && recbook.booked)
|
||||
return arrbookings.value.some((recbook: IBookedEvent) => recbook.userId === userStore.my._id && recbook.booked);
|
||||
}
|
||||
|
||||
function extraparams() {
|
||||
@@ -734,6 +734,7 @@ export default defineComponent({
|
||||
ismounted,
|
||||
updatePart,
|
||||
numpart,
|
||||
colmyUserPeople,
|
||||
}
|
||||
}
|
||||
})
|
||||
|
||||
@@ -1041,7 +1041,7 @@
|
||||
<span v-if="myrec.createdBy"
|
||||
><br />{{ $t('services.createdBy') }}
|
||||
<span class="text-bold"
|
||||
><a :href="'my/' + createdBy">{{ createdBy }}</a></span
|
||||
><a :href="'my/' + myrec.createdBy">{{ myrec.createdBy }}</a></span
|
||||
></span
|
||||
>
|
||||
</q-item-label>
|
||||
@@ -1522,7 +1522,7 @@
|
||||
v-else-if="bookEventForm.booked"
|
||||
:label="getTitleBtnBooking()"
|
||||
color="primary"
|
||||
@click="saveBookEvent()"
|
||||
@click="saveBookEvent"
|
||||
:disable="!(bookEventpage.state === EState.Creating || hasModifiedBooking)"
|
||||
></q-btn>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user