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"
/>
<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>
</div>
</template>

View File

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