98 lines
2.1 KiB
Plaintext
98 lines
2.1 KiB
Plaintext
<template>
|
|
<div :class="getClass">
|
|
<template v-if="canFullscreen">
|
|
<Tooltip title="还原" placement="bottom" v-if="fullScreen">
|
|
<FullscreenExitOutlined role="full" @click="handleFullScreen" />
|
|
</Tooltip>
|
|
<Tooltip title="最大化" placement="bottom" v-else>
|
|
<FullscreenOutlined role="close" @click="handleFullScreen" />
|
|
</Tooltip>
|
|
</template>
|
|
<Tooltip title="关闭" placement="bottom">
|
|
<CloseOutlined @click="handleCancel" />
|
|
</Tooltip>
|
|
</div>
|
|
</template>
|
|
<script lang="ts">
|
|
import { defineComponent, computed } from 'vue';
|
|
import { FullscreenExitOutlined, FullscreenOutlined, CloseOutlined } from '@ant-design/icons-vue';
|
|
import { Tooltip } from 'ant-design-vue';
|
|
|
|
export default defineComponent({
|
|
name: 'ModalClose',
|
|
components: { Tooltip, FullscreenExitOutlined, FullscreenOutlined, CloseOutlined },
|
|
props: {
|
|
canFullscreen: { type: Boolean, default: true },
|
|
fullScreen: { type: Boolean },
|
|
},
|
|
emits: ['cancel', 'fullscreen'],
|
|
setup(props, { emit }) {
|
|
const getClass = computed(() => {
|
|
return [
|
|
`ant--custom`,
|
|
{
|
|
[`ant--can-full`]: props.canFullscreen,
|
|
},
|
|
];
|
|
});
|
|
|
|
function handleCancel(e: Event) {
|
|
emit('cancel', e);
|
|
}
|
|
|
|
function handleFullScreen(e: Event) {
|
|
e?.stopPropagation();
|
|
e?.preventDefault();
|
|
emit('fullscreen');
|
|
}
|
|
|
|
return {
|
|
getClass,
|
|
handleCancel,
|
|
handleFullScreen,
|
|
};
|
|
},
|
|
});
|
|
</script>
|
|
<style lang="less">
|
|
.ant-basic-modal-close {
|
|
display: flex;
|
|
height: 95%;
|
|
align-items: center;
|
|
|
|
> span {
|
|
margin-left: 48px;
|
|
font-size: 16px;
|
|
}
|
|
|
|
&--can-full {
|
|
> span {
|
|
margin-left: 12px;
|
|
}
|
|
}
|
|
|
|
&:not(&--can-full) {
|
|
> span:nth-child(1) {
|
|
&:hover {
|
|
font-weight: 700;
|
|
}
|
|
}
|
|
}
|
|
|
|
& span:nth-child(1) {
|
|
display: inline-block;
|
|
padding: 10px;
|
|
|
|
&:hover {
|
|
color: @primary-color;
|
|
}
|
|
}
|
|
|
|
& span:last-child {
|
|
&:hover {
|
|
color: @error-color;
|
|
}
|
|
}
|
|
}
|
|
</style>
|