48 lines
1.1 KiB
Vue
48 lines
1.1 KiB
Vue
<template>
|
|
<div class="panel panel-default">
|
|
<div class="panel-body">
|
|
<h4>Tambah Jawatan</h4>
|
|
<form @submit.prevent="add()" id="add-form">
|
|
<div class="form-group">
|
|
<label for="name">Nama</label>
|
|
<input type="text" name="name" class="form-control" required>
|
|
</div>
|
|
<div class="form-group">
|
|
<button type="submit" class="btn btn-success">Hantar</button>
|
|
<router-link :to="{name: 'Kemaskini Jawatan'}" class="btn btn-default">Kembali</router-link>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default{
|
|
data: function () {
|
|
return {
|
|
loading: false
|
|
}
|
|
},
|
|
methods: {
|
|
add: function () {
|
|
if (this.loading) return;
|
|
this.loading = true;
|
|
var vm = this;
|
|
this.util.notify('Adding Position', 'loading')
|
|
axios.post(config.API+'position', $('#add-form').serialize())
|
|
.then(response=>{
|
|
$.notifyClose();
|
|
vm.loading = false;
|
|
if (vm.util.showResult(response, 'success')) {
|
|
vm.$router.push({name:'Kemaskini Jawatan', query:{refresh:true}});
|
|
}
|
|
})
|
|
.catch(error=>{
|
|
$.notifyClose();
|
|
vm.loading = false;
|
|
vm.util.showResult(error);
|
|
})
|
|
}
|
|
}
|
|
}
|
|
</script> |