fix: date copy & btn add emails
This commit is contained in:
@@ -240,8 +240,21 @@ td {
|
|||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: row;
|
flex-direction: row;
|
||||||
gap: 1rem;
|
gap: 1rem;
|
||||||
align-items: center;
|
align-items: end;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.btn-leading-input {
|
||||||
|
padding: 10px 12px;
|
||||||
|
background-color: #323030;
|
||||||
|
color: #FFF;
|
||||||
|
border: none;
|
||||||
|
border-radius: 8px;
|
||||||
|
font-size: 1rem;
|
||||||
|
font-weight: 700;
|
||||||
|
cursor: pointer;
|
||||||
|
transition: background-color 0.3s;
|
||||||
|
}
|
||||||
|
|
||||||
.input-observer {
|
.input-observer {
|
||||||
flex: 1;
|
flex: 1;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -297,7 +297,7 @@
|
|||||||
<button
|
<button
|
||||||
type="button"
|
type="button"
|
||||||
@click="addObserver"
|
@click="addObserver"
|
||||||
class="btn btn-dark"
|
class="btn-leading-input mb-4"
|
||||||
>
|
>
|
||||||
Agregar
|
Agregar
|
||||||
</button>
|
</button>
|
||||||
|
|||||||
@@ -236,12 +236,12 @@
|
|||||||
<option disabled value="">-- {{ t('labels.selectedRol') }} --</option>
|
<option disabled value="">-- {{ t('labels.selectedRol') }} --</option>
|
||||||
<option value="manager">{{ t('labels.manager') }}</option>
|
<option value="manager">{{ t('labels.manager') }}</option>
|
||||||
<option value="staff">{{ t('labels.staff') }}</option>
|
<option value="staff">{{ t('labels.staff') }}</option>
|
||||||
<option
|
<!-- <option
|
||||||
v-if="authStore.user?.permissions === 'role_shipper'"
|
v-if="authStore.user?.permissions === 'role_shipper'"
|
||||||
value="warehouse"
|
value="warehouse"
|
||||||
>
|
>
|
||||||
{{ t('labels.warehouse') }}
|
{{ t('labels.warehouse') }}
|
||||||
</option>
|
</option> -->
|
||||||
<option
|
<option
|
||||||
v-if="authStore.user?.permissions === 'role_carrier'"
|
v-if="authStore.user?.permissions === 'role_carrier'"
|
||||||
value="driver"
|
value="driver"
|
||||||
@@ -251,7 +251,7 @@
|
|||||||
</select>
|
</select>
|
||||||
<span class="error-msg" v-if="errors.job_role">{{ errors.job_role }}</span>
|
<span class="error-msg" v-if="errors.job_role">{{ errors.job_role }}</span>
|
||||||
</div>
|
</div>
|
||||||
<div v-if="userForm.job_role === 'warehouse'">
|
<!-- <div v-if="userForm.job_role === 'warehouse'">
|
||||||
<Spiner v-if="loadingWarehouses"/>
|
<Spiner v-if="loadingWarehouses"/>
|
||||||
<div class="d-flex flex-column my-4" v-if="!loadingWarehouses">
|
<div class="d-flex flex-column my-4" v-if="!loadingWarehouses">
|
||||||
<label class="custom-label required" for="locationLoad">{{ t('labels.warehouses') }}*</label>
|
<label class="custom-label required" for="locationLoad">{{ t('labels.warehouses') }}*</label>
|
||||||
@@ -266,8 +266,8 @@
|
|||||||
</select>
|
</select>
|
||||||
<span class="error-msg" v-if="errors.warehouse">{{ errors.warehouse }}</span>
|
<span class="error-msg" v-if="errors.warehouse">{{ errors.warehouse }}</span>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div> -->
|
||||||
<div v-else>
|
<!-- <div v-else> -->
|
||||||
<div class="mb-4 mt-3">
|
<div class="mb-4 mt-3">
|
||||||
<label class="custom-label">{{ t('global.segments') }}</label>
|
<label class="custom-label">{{ t('global.segments') }}</label>
|
||||||
<Segments
|
<Segments
|
||||||
@@ -296,7 +296,7 @@
|
|||||||
:multiple="true"
|
:multiple="true"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
<!-- </div> -->
|
||||||
<div class="d-flex flex-column">
|
<div class="d-flex flex-column">
|
||||||
<label class="custom-label" for="description">{{ t('labels.userInfo') }}</label>
|
<label class="custom-label" for="description">{{ t('labels.userInfo') }}</label>
|
||||||
<textarea
|
<textarea
|
||||||
|
|||||||
@@ -1,4 +1,3 @@
|
|||||||
|
|
||||||
<template>
|
<template>
|
||||||
<div class="footer">
|
<div class="footer">
|
||||||
<div class="d-flex justify-content-between">
|
<div class="d-flex justify-content-between">
|
||||||
@@ -25,7 +24,7 @@
|
|||||||
<RouterLink class="btn-links" :to="{name: 'faqs'}" target="_blank">Faqs</RouterLink>
|
<RouterLink class="btn-links" :to="{name: 'faqs'}" target="_blank">Faqs</RouterLink>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<h4 class="copy"><i class="fa fa-copyright" aria-hidden="true"></i>2024 {{ $t('global.footer') }}</h4>
|
<h4 class="copy"><i class="fa fa-copyright" aria-hidden="true"></i>{{ new Date().getFullYear() }} {{ $t('global.footer') }}</h4>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
|
|||||||
@@ -498,7 +498,7 @@ import { validateEmail } from '../helpers/validations';
|
|||||||
<button
|
<button
|
||||||
type="button"
|
type="button"
|
||||||
@click="addObserver"
|
@click="addObserver"
|
||||||
class="btn btn-dark"
|
class="btn-leading-input mb-4"
|
||||||
>
|
>
|
||||||
Agregar
|
Agregar
|
||||||
</button>
|
</button>
|
||||||
|
|||||||
Reference in New Issue
Block a user