mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/exchange-2.0.git
synced 2026-08-26 07:53:58 +00:00
45 lines
1.7 KiB
Vue
45 lines
1.7 KiB
Vue
<template>
|
|
<div class="row text-center">
|
|
<div class="col">
|
|
<loading-component style="height: 300px; top: 0;" key="1" color="success" v-show="isLoading" ></loading-component>
|
|
<div class="row justify-content-center" v-show="!isLoading">
|
|
<div class="col">
|
|
<div class="row m-b-20">
|
|
<div class="col">
|
|
<h3 class="all-caps">Are you Sure?</h3>
|
|
<div class="fs-11">Are you sure you want to suspend this Bank Account?</div>
|
|
</div>
|
|
</div>
|
|
<div class="row">
|
|
<div class="col p-r-5">
|
|
<div class="btn btn-sm btn-success btn-block b-rad-none" data-dismiss="modal">Cancel</div>
|
|
</div>
|
|
<div class="col p-l-5">
|
|
<div class="btn btn-sm btn-danger btn-block b-rad-none" @click="submitForm()">Confirm</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
<script>
|
|
import componentHandler from '../../../general/mixins/componentHandler';
|
|
import ModalFormHandler from '../../../general/mixins/modalFormHandler';
|
|
|
|
export default {
|
|
props: {
|
|
section: {
|
|
default: 'paymentProofSection'
|
|
}
|
|
},
|
|
methods: {
|
|
submitForm() {
|
|
this.parameters.status = 5;
|
|
this.submit(this.route('api.bank.status.update', this.data.recipient_bank_account.id), 'put', this.section, true, false);
|
|
}
|
|
},
|
|
mixins: [componentHandler, ModalFormHandler]
|
|
|
|
}
|
|
</script> |