fix: date copy & btn add emails
This commit is contained in:
@@ -240,8 +240,21 @@ td {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
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 {
|
||||
flex: 1;
|
||||
}
|
||||
|
||||
@@ -297,7 +297,7 @@
|
||||
<button
|
||||
type="button"
|
||||
@click="addObserver"
|
||||
class="btn btn-dark"
|
||||
class="btn-leading-input mb-4"
|
||||
>
|
||||
Agregar
|
||||
</button>
|
||||
|
||||
@@ -236,12 +236,12 @@
|
||||
<option disabled value="">-- {{ t('labels.selectedRol') }} --</option>
|
||||
<option value="manager">{{ t('labels.manager') }}</option>
|
||||
<option value="staff">{{ t('labels.staff') }}</option>
|
||||
<option
|
||||
<!-- <option
|
||||
v-if="authStore.user?.permissions === 'role_shipper'"
|
||||
value="warehouse"
|
||||
>
|
||||
{{ t('labels.warehouse') }}
|
||||
</option>
|
||||
</option> -->
|
||||
<option
|
||||
v-if="authStore.user?.permissions === 'role_carrier'"
|
||||
value="driver"
|
||||
@@ -251,7 +251,7 @@
|
||||
</select>
|
||||
<span class="error-msg" v-if="errors.job_role">{{ errors.job_role }}</span>
|
||||
</div>
|
||||
<div v-if="userForm.job_role === 'warehouse'">
|
||||
<!-- <div v-if="userForm.job_role === 'warehouse'">
|
||||
<Spiner 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>
|
||||
@@ -266,8 +266,8 @@
|
||||
</select>
|
||||
<span class="error-msg" v-if="errors.warehouse">{{ errors.warehouse }}</span>
|
||||
</div>
|
||||
</div>
|
||||
<div v-else>
|
||||
</div> -->
|
||||
<!-- <div v-else> -->
|
||||
<div class="mb-4 mt-3">
|
||||
<label class="custom-label">{{ t('global.segments') }}</label>
|
||||
<Segments
|
||||
@@ -296,7 +296,7 @@
|
||||
:multiple="true"
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
<!-- </div> -->
|
||||
<div class="d-flex flex-column">
|
||||
<label class="custom-label" for="description">{{ t('labels.userInfo') }}</label>
|
||||
<textarea
|
||||
|
||||
@@ -1,4 +1,3 @@
|
||||
|
||||
<template>
|
||||
<div class="footer">
|
||||
<div class="d-flex justify-content-between">
|
||||
@@ -25,7 +24,7 @@
|
||||
<RouterLink class="btn-links" :to="{name: 'faqs'}" target="_blank">Faqs</RouterLink>
|
||||
</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>
|
||||
</template>
|
||||
|
||||
|
||||
@@ -498,7 +498,7 @@ import { validateEmail } from '../helpers/validations';
|
||||
<button
|
||||
type="button"
|
||||
@click="addObserver"
|
||||
class="btn btn-dark"
|
||||
class="btn-leading-input mb-4"
|
||||
>
|
||||
Agregar
|
||||
</button>
|
||||
|
||||
Reference in New Issue
Block a user