From 0425296e5bc95ab94556ab09700844b1222dc077 Mon Sep 17 00:00:00 2001 From: Andrew Date: Tue, 23 Jul 2019 13:15:29 +0400 Subject: =?UTF-8?q?=D0=9A=D0=BE=D0=BB=D0=BB=D0=B1=D1=8D=D0=BA=D0=B8=20?= =?UTF-8?q?=D0=B7=D0=B0=D0=BC=D0=B5=D0=BD=D0=B5=D0=BD=D1=8B=20=D0=BD=D0=B0?= =?UTF-8?q?=20=D1=81=D0=BE=D0=B1=D1=8B=D1=82=D0=B8=D1=8F.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- day9/task5_vue/src/App.vue | 8 ++++---- day9/task5_vue/src/components/AddNewEntryButton.vue | 5 ++--- day9/task5_vue/src/components/EditFormBox.vue | 16 ++++------------ day9/task5_vue/src/components/Table.vue | 4 ++-- 4 files changed, 12 insertions(+), 21 deletions(-) (limited to 'day9/task5_vue') diff --git a/day9/task5_vue/src/App.vue b/day9/task5_vue/src/App.vue index 8def105..42ba3b1 100644 --- a/day9/task5_vue/src/App.vue +++ b/day9/task5_vue/src/App.vue @@ -3,13 +3,13 @@ - +
- + diff --git a/day9/task5_vue/src/components/AddNewEntryButton.vue b/day9/task5_vue/src/components/AddNewEntryButton.vue index 6b7e19b..f22da0f 100644 --- a/day9/task5_vue/src/components/AddNewEntryButton.vue +++ b/day9/task5_vue/src/components/AddNewEntryButton.vue @@ -13,7 +13,6 @@ export default { name: "AddNewEntryButton", - props: ['showFormCallback'], components: {EditFormBox}, data() { @@ -24,13 +23,13 @@ methods: { showForm() { - this.showFormCallback('create', { + this.$emit('show-form', { service_id: '', servtype: '', subtype: '', user_id: '', referrer_user_id: '', state: '', creation_date: '', creation_time: '', creation_request_sent_date: '', notified_about_expiration: '' - }) + }); } } } diff --git a/day9/task5_vue/src/components/EditFormBox.vue b/day9/task5_vue/src/components/EditFormBox.vue index f18bf69..42bb3c6 100644 --- a/day9/task5_vue/src/components/EditFormBox.vue +++ b/day9/task5_vue/src/components/EditFormBox.vue @@ -95,7 +95,7 @@
- + @@ -109,7 +109,7 @@ export default { name: "EditFormBox", - props: ['formType', 'cancelCallback', 'tableRow', 'showPopup'], + props: ['formType', 'tableRow'], data() { return { @@ -126,14 +126,6 @@ } }, - mounted() { - let action = ''; - if (this.formType === 'create') action = '/api/add'; - else if (this.formType === 'update') action = '/api/update'; - - this.$refs.tableForm.action = action; - }, - methods: { submitForm() { let creation_date = this.$refs.creation_request_sent_date.value; @@ -177,8 +169,8 @@ data: JSON.stringify(formData) }) .then(response => { - this.cancelCallback(); - this.showPopup('Database updated successfully'); + this.$emit('close-form'); + this.$emit('show-popup', 'Database updated successfully'); }); } } diff --git a/day9/task5_vue/src/components/Table.vue b/day9/task5_vue/src/components/Table.vue index a186277..97bc24d 100644 --- a/day9/task5_vue/src/components/Table.vue +++ b/day9/task5_vue/src/components/Table.vue @@ -32,7 +32,7 @@ export default { name: "Table", - props: ['tableData', 'showFormCallback'], + props: ['tableData'], components: {EditFormBox}, methods: { @@ -45,7 +45,7 @@ data: JSON.stringify({'type': 'single_id', 'service_id': serviceId}) }) .then(response => { - this.showFormCallback('update', response.data); + this.$emit('show-form', response.data); }); }, -- cgit v1.2.3