feat(moda;): can switch full screen by double-clicking on the head close #277

This commit is contained in:
vben 2021-02-20 00:08:22 +08:00
parent 4f8e1c1b5f
commit e3851dc5ea
3 changed files with 18 additions and 3 deletions

View File

@ -3,6 +3,7 @@
### ✨ Features ### ✨ Features
- 新增 `settingButtonPosition`配置项,用于配置`设置`按钮位置 - 新增 `settingButtonPosition`配置项,用于配置`设置`按钮位置
- `modal`可以通过双击头部切换全屏
### ⚡ Performance Improvements ### ⚡ Performance Improvements

View File

@ -10,7 +10,11 @@
</template> </template>
<template #title v-if="!$slots.title"> <template #title v-if="!$slots.title">
<ModalHeader :helpMessage="getProps.helpMessage" :title="getMergeProps.title" /> <ModalHeader
:helpMessage="getProps.helpMessage"
:title="getMergeProps.title"
@dblclick="handleTitleDbClick"
/>
</template> </template>
<template #footer v-if="!$slots.footer"> <template #footer v-if="!$slots.footer">
@ -193,6 +197,12 @@
extHeightRef.value = height; extHeightRef.value = height;
} }
function handleTitleDbClick(e: ChangeEvent) {
if (!props.canFullscreen) return;
e.stopPropagation();
handleFullScreen(e);
}
return { return {
handleCancel, handleCancel,
getBindValue, getBindValue,
@ -206,6 +216,7 @@
modalWrapperRef, modalWrapperRef,
handleExtHeight, handleExtHeight,
handleHeightChange, handleHeightChange,
handleTitleDbClick,
}; };
}, },
}); });

View File

@ -44,6 +44,9 @@ body {
} }
a:focus, a:focus,
a:active { a:active,
outline: none; button,
div,
span {
outline: none !important;
} }