2020-12-04 20:36:42 +00:00
|
|
|
<template>
|
|
|
|
|
<div>
|
2020-12-10 17:37:02 +00:00
|
|
|
<slot name="target-item"></slot>
|
2020-12-04 20:36:42 +00:00
|
|
|
|
|
|
|
|
<b-popover
|
2020-12-17 17:38:18 +00:00
|
|
|
:show="autoShow"
|
2020-12-04 20:36:42 +00:00
|
|
|
:target="target"
|
2020-12-17 17:38:18 +00:00
|
|
|
ref="popover"
|
2020-12-04 20:36:42 +00:00
|
|
|
triggers="click"
|
|
|
|
|
placement="bottom"
|
2020-12-17 17:38:18 +00:00
|
|
|
class="popovercustom"
|
2020-12-04 20:36:42 +00:00
|
|
|
>
|
|
|
|
|
<template #title>
|
|
|
|
|
<b-button @click="onClose" class="close" aria-label="Close">
|
|
|
|
|
<span class="d-inline-block" aria-hidden="true"
|
|
|
|
|
>×</span
|
|
|
|
|
>
|
|
|
|
|
</b-button>
|
2020-12-10 17:37:02 +00:00
|
|
|
{{ title }}
|
2020-12-04 20:36:42 +00:00
|
|
|
</template>
|
|
|
|
|
<div>
|
2020-12-10 17:37:02 +00:00
|
|
|
<slot name="body"></slot>
|
2020-12-04 20:36:42 +00:00
|
|
|
<div class="float-right">
|
2020-12-10 17:37:02 +00:00
|
|
|
<b-button @click="onClose" size="sm" variant="danger"> {{$t('ID_CANCEL')}}</b-button>
|
|
|
|
|
<b-button @click="onSave" size="sm" variant="primary">{{$t('ID_SAVE')}}</b-button>
|
2020-12-04 20:36:42 +00:00
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</b-popover>
|
|
|
|
|
</div>
|
|
|
|
|
</template>
|
|
|
|
|
<script>
|
|
|
|
|
export default {
|
2020-12-17 17:38:18 +00:00
|
|
|
props: ['target', "title", "autoShow"],
|
|
|
|
|
|
2020-12-04 20:36:42 +00:00
|
|
|
methods: {
|
2020-12-10 17:37:02 +00:00
|
|
|
/**
|
|
|
|
|
* Close buton click handler
|
|
|
|
|
*/
|
2020-12-04 20:36:42 +00:00
|
|
|
onClose() {
|
2020-12-17 17:38:18 +00:00
|
|
|
this.$refs.popover.$emit('close');
|
2020-12-04 20:36:42 +00:00
|
|
|
this.$emit('closePopover');
|
|
|
|
|
},
|
2020-12-10 17:37:02 +00:00
|
|
|
/**
|
|
|
|
|
* Save button click handler
|
|
|
|
|
*/
|
2020-12-04 20:36:42 +00:00
|
|
|
onSave() {
|
|
|
|
|
this.$emit('savePopover');
|
2020-12-10 17:37:02 +00:00
|
|
|
}
|
|
|
|
|
}
|
2020-12-04 20:36:42 +00:00
|
|
|
};
|
|
|
|
|
</script>
|
2020-12-10 17:37:02 +00:00
|
|
|
|
2020-12-04 20:36:42 +00:00
|
|
|
<style scoped>
|
|
|
|
|
|
|
|
|
|
.popover {
|
|
|
|
|
max-width: 650px !important;
|
|
|
|
|
min-width: 400px !important;
|
|
|
|
|
}
|
|
|
|
|
</style>
|