-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into production
- Loading branch information
Showing
23 changed files
with
637 additions
and
585 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
<template> | ||
<div v-if="!hasPeriod || !hasActions" class="row"> | ||
<div class="col-sm-4"></div> | ||
<div class="col-12 col-sm-4"> | ||
<div class="mx-auto"> | ||
<img src="images/Ilustracion_COOBS_home_01.png" class="w-100 img-fluid mb-3"> | ||
<div v-if="!hasPeriod" class="row justify-content-center"> | ||
<h1 class="h4 text-center mb-3">Aún no se ha creado ningun período</h1> | ||
<button type="button" class="btn btn-primary mb-3 mb-sm-0" @click.stop="$router.go(-1)"> | ||
Crear un período | ||
</button> | ||
</div> | ||
<div v-else class="row justify-content-center"> | ||
<h1 class="h4 text-center mb-3">Aún no se ha creado ninguna acción para el período seleccionado</h1> | ||
<button type="button" class="btn btn-primary mb-3 mb-sm-0" @click.stop="$router.go(-1)"> | ||
Crear una acción | ||
</button> | ||
</div> | ||
</div> | ||
</div> | ||
<div class="col-sm-4"></div> | ||
</div> | ||
</template> | ||
|
||
<script> | ||
export default { | ||
props: { | ||
hasPeriod: { | ||
type: Boolean, | ||
default: false | ||
}, | ||
hasActions: { | ||
type: Boolean, | ||
default: false | ||
} | ||
} | ||
} | ||
</script> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.