mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/shipping-portal.git
synced 2026-08-19 04:24:12 +00:00
23 lines
776 B
Vue
23 lines
776 B
Vue
<template>
|
|
<i v-show="data.address_change_request&&$store.getters.isAdmin" class="fa fa-exclamation pointer requestModal" data-type="approveChangeAddress">
|
|
<modal-component class="animate__animated animate__fast animate__fadeIn" styleType="fill-in" type="approveChangeAddress" size="large">
|
|
<approve-change-address-form-component :data="data" :section="section" class="text-center"></approve-change-address-form-component>
|
|
</modal-component>
|
|
</i>
|
|
</template>
|
|
<script>
|
|
export default {
|
|
props: {
|
|
data: {
|
|
type: Object,
|
|
required: true,
|
|
}
|
|
},
|
|
data() {
|
|
return {
|
|
section:"changeAddressSection"
|
|
}
|
|
},
|
|
}
|
|
</script>
|