This commit is contained in:
ogerly 2021-03-30 15:13:47 +02:00
parent d18be8bcd2
commit 1c7a689621
2 changed files with 8 additions and 5 deletions

View File

@ -11,7 +11,11 @@
@change-rows="setRows" @change-rows="setRows"
/> />
<hr /> <hr />
<gdd-table :row_form="row_form" :transactions="transactions" @change-transactions="setTransactions"/> <gdd-table
:row_form="row_form"
:transactions="transactions"
@change-transactions="setTransactions"
/>
</b-container> </b-container>
</div> </div>
</template> </template>

View File

@ -226,8 +226,7 @@ export default {
send: false, send: false,
} }
}, },
computed: { computed: {},
},
methods: { methods: {
async onDecode(decodedString) { async onDecode(decodedString) {
const arr = JSON.parse(decodedString) const arr = JSON.parse(decodedString)
@ -261,7 +260,7 @@ export default {
this.$emit('change-rows', { row_form: false, row_check: false, row_thx: true }) this.$emit('change-rows', { row_form: false, row_check: false, row_thx: true })
} else { } else {
// console.log('send error') // console.log('send error')
alert("error") alert('error')
this.$emit('change-rows', { row_form: true, row_check: false, row_thx: false }) this.$emit('change-rows', { row_form: true, row_check: false, row_thx: false })
} }
}, },