|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
-
-
-
- var app = new Vue({
- el: '#app-document-form',
- data: {
- idUser: '',
- address : ''
- },
- methods: {
- changeUser: function(event) {
- var app = this ;
- axios.get(UrlManager.getBaseUrlAbsolute()+"document/address-user",{params: {
- idUser: app.idUser
- }})
- .then(function(response) {
- console.log(response.data) ;
- if(response.data.return == 'success') {
- app.address = response.data.address ;
- }
- else {
- app.address = '' ;
- }
- }) ;
- }
- }
- });
-
-
|