Pour tout problème contactez-nous par mail : support@froggit.fr | La FAQ :grey_question: | Rejoignez-nous sur le Chat :speech_balloon:

Skip to content
Snippets Groups Projects
Commit e89f41b2 authored by GrayFawkes's avatar GrayFawkes
Browse files

0.1.1

parent 6cb1b3f3
No related branches found
No related tags found
No related merge requests found
...@@ -28,8 +28,9 @@ ...@@ -28,8 +28,9 @@
</div> </div>
</nav> </nav>
<!-- Container VueJS -->
<div class="container-fluid"> <div class="container-fluid">
<router-view/> <!-- Container VueJS --> <router-view/>
</div> </div>
</div> </div>
</template> </template>
...@@ -47,6 +48,10 @@ export default { ...@@ -47,6 +48,10 @@ export default {
this.langs.push({ 'lang': property, 'locale': this.$i18n.messages[property].global.locale }) this.langs.push({ 'lang': property, 'locale': this.$i18n.messages[property].global.locale })
} }
} }
},
methods: {
getTrucs () {
}
} }
} }
</script> </script>
......
...@@ -4,10 +4,10 @@ ...@@ -4,10 +4,10 @@
<span class="row"> <span class="row">
<label for="numSSInput">{{$t('clients.numss-input')}}</label> <label for="numSSInput">{{$t('clients.numss-input')}}</label>
<div class="col"> <div class="col">
<input v-model="client.numSS" v-bind:placeholder="$t('clients.numss-input')" type="text" id="numSSInput" class="form-control input_ss form-control-sm" size="13"/> <input v-model="client.numSS" v-bind:placeholder="$t('clients.numss-input')" type="text" id="numSSInput" class="form-control form-control-sm input_ss" size="13"/>
</div> </div>
<div class="col"> <div class="col">
<input v-model="client.cleSS" v-bind:placeholder="$t('clients.keyss-input')" type="number" id="cleSSInput" class="form-control input_key form-control-sm" min="0" max="99" value="00" size="2"/> <input v-model="client.cleSS" v-bind:placeholder="$t('clients.keyss-input')" type="number" id="cleSSInput" class="form-control form-control-sm input_key" min="0" max="99" value="00" size="2"/>
</div> </div>
</span> </span>
<span class="row"> <span class="row">
...@@ -73,22 +73,22 @@ export default { ...@@ -73,22 +73,22 @@ export default {
return { return {
uuid: '', uuid: '',
client: { client: {
uuid: undefined, // uuid: undefined,
numSS: '', // numSS: '',
cleSS: '', // cleSS: '',
lastName: '', // lastName: '',
firstName: '', // firstName: '',
birthDate: '', // birthDate: '',
address: '', // address: '',
address2: '', // address2: '',
city: '', // city: '',
zipcode: '', // zipcode: '',
cellphone: '', // cellphone: '',
phone: '', // phone: '',
center: '', // center: '',
viewAt: '', // viewAt: '',
active: false, // active: false,
isEdit: false // isEdit: false
} }
} }
}, },
...@@ -150,13 +150,11 @@ export default { ...@@ -150,13 +150,11 @@ export default {
</script> </script>
<style> <style>
.input_ss { width: 9em; }
.input_ss { width: 9em; } .input_key { width: 3em; }
.input_key { width: 3em; } .input_key input[type=number], input[type=number]::-webkit-inner-spin-button, input[type=number]::-webkit-outer-spin-button {
.input_key input[type=number], input[type=number]::-webkit-inner-spin-button, input[type=number]::-webkit-outer-spin-button { -moz-appearance: textfield;
-moz-appearance: textfield; -webkit-appearance: none;
-webkit-appearance: none; margin: 0;
margin: 0; }
}
</style> </style>
...@@ -10,7 +10,7 @@ ...@@ -10,7 +10,7 @@
<script> <script>
export default { export default {
name: 'Settings', name: 'Settings',
data () { data () {
return { } return { }
}, },
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment