mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/exchange-2.0.git
synced 2026-08-31 02:14:00 +00:00
31 lines
1.0 KiB
Vue
31 lines
1.0 KiB
Vue
<template>
|
|
<div class="row">
|
|
<div class="col padding-0">
|
|
<div class="col">
|
|
<validation-wrapper-component selectable :validator="$v.bankStatementType">
|
|
<label>Bank Statement Type</label>
|
|
<select-component :options="['CIEF WORLDWIDE SDN. BHD. (568603010762)', 'CIEF WORLDWIDE SDN. BHD. AMBANK (8881040198515)', 'CIEF LITE']" v-model="bankStatementType"></select-component>
|
|
</validation-wrapper-component>
|
|
</div>
|
|
<div class="col">
|
|
<import-statement-form-component section="importStatementFrom" :statementType="bankStatementType"></import-statement-form-component>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
<script>
|
|
export default {
|
|
data() {
|
|
return {
|
|
bankStatementType: "CIEF WORLDWIDE SDN. BHD. (568603010762)",
|
|
}
|
|
},
|
|
validations: {
|
|
bankStatementType: { },
|
|
},
|
|
methods: {
|
|
|
|
},
|
|
}
|
|
|
|
</script> |