Portal invoice payment credit card style

This commit is contained in:
Cüneyt Şentürk
2019-12-28 14:41:09 +03:00
parent 11e08fd23e
commit 3e17a0bf01
8 changed files with 1300 additions and 2 deletions

View File

@ -15,13 +15,15 @@ import BulkAction from './../../plugins/bulk-action';
const app = new Vue({
el: '#app',
mixins: [
Global
],
data: function () {
return {
form: new Form('item'),
bulk_action: new BulkAction('items')
bulk_action: new BulkAction('items'),
}
}
});

View File

@ -13,6 +13,8 @@ import Global from './../../mixins/global';
import Form from './../../plugins/form';
import CardForm from './../../components/CreditCard/CardForm';
const app = new Vue({
el: '#app',
@ -20,11 +22,22 @@ const app = new Vue({
Global
],
components: {
CardForm
},
data: function () {
return {
form: new Form('invoice-payment'),
redirectForm: new Form('redirect-form'),
method_show_html: ''
method_show_html: '',
formData: {
cardName: '',
cardNumber: '',
cardMonth: '',
cardYear: '',
cardCvv: ''
}
}
},
@ -117,6 +130,21 @@ const app = new Vue({
.catch(error => {
this.method_show_html = error.message;
});
},
updateCardNumber (val) {
},
updateCardName (val) {
},
updateCardMonth (val) {
},
updateCardYear (val) {
},
updateCardCvv (val) {
}
}
});