<script lang="ts" setup>
|
import { propTypes } from '@/utils/propTypes'
|
import { isNumber } from '@/utils/is'
|
defineOptions({ name: 'DialogAi' })
|
|
const slots = useSlots()
|
|
const props = defineProps({
|
modelValue: propTypes.bool.def(false),
|
title: propTypes.string.def('Dialog'),
|
fullscreen: propTypes.bool.def(true),
|
width: propTypes.oneOfType([String, Number]).def('30%'),
|
scroll: propTypes.bool.def(false), // 是否开启滚动条。如果是的话,按照 maxHeight 设置最大高度
|
maxHeight: propTypes.oneOfType([String, Number]).def('400px')
|
})
|
|
const getBindValue = computed(() => {
|
const delArr: string[] = ['fullscreen', 'title', 'maxHeight', 'appendToBody']
|
const attrs = useAttrs()
|
const obj = { ...attrs, ...props }
|
for (const key in obj) {
|
if (delArr.indexOf(key) !== -1) {
|
delete obj[key]
|
}
|
}
|
return obj
|
})
|
|
const isFullscreen = ref(false)
|
|
const toggleFull = () => {
|
isFullscreen.value = !unref(isFullscreen)
|
}
|
|
const dialogHeight = ref(isNumber(props.maxHeight) ? `${props.maxHeight}px` : props.maxHeight)
|
|
watch(
|
() => isFullscreen.value,
|
async (val: boolean) => {
|
await nextTick()
|
if (val) {
|
const windowHeight = document.documentElement.offsetHeight
|
dialogHeight.value = `${windowHeight - 55 - 60 - (slots.footer ? 63 : 0)}px`
|
} else {
|
dialogHeight.value = isNumber(props.maxHeight) ? `${props.maxHeight}px` : props.maxHeight
|
}
|
},
|
{
|
immediate: true
|
}
|
)
|
|
</script>
|
|
<template>
|
<ElDialog
|
v-bind="getBindValue"
|
:fullscreen="isFullscreen"
|
:close-on-click-modal="true"
|
:width="width"
|
destroy-on-close
|
lock-scroll
|
draggable
|
class="history-dialog"
|
:show-close="false"
|
>
|
<template #header="{ close }">
|
<div class="relative h-30px flex items-center justify-between pl-15px pr-15px">
|
<slot name="title">
|
{{ title }}
|
</slot>
|
<div
|
class="absolute right-15px top-[50%] h-40px flex translate-y-[-50%] items-center justify-between"
|
>
|
<Icon
|
class="is-hover cursor-pointer"
|
icon="ep:close"
|
hover-color="var(--el-color-primary)"
|
color="#73C4FF"
|
@click="close"
|
/>
|
</div>
|
</div>
|
</template>
|
|
<slot></slot>
|
<template v-if="slots.footer" #footer>
|
<slot name="footer"></slot>
|
</template>
|
</ElDialog>
|
</template>
|
|
<style lang="scss">
|
.history-dialog {
|
height: 90vh;
|
color: #73C4FF;
|
margin-top: 30px;
|
background: rgba(3,29,76,0.79);
|
border-radius: 4px 4px 4px 4px;
|
border: 1px solid;
|
.#{$elNamespace}-overlay-dialog {
|
display: flex;
|
justify-content: center;
|
align-items: center;
|
}
|
|
.#{$elNamespace}-dialog {
|
margin: 0 !important;
|
&__header {
|
height: 40px;
|
padding: 0;
|
margin-right: 0 !important;
|
background:
|
url("@/assets/ai/zhuanlu/history_title.png") left no-repeat,
|
linear-gradient(to bottom, #0a1633dd, #0a1633dd); /* 叠加深色遮罩 */
|
div {
|
color: #73C4FF;
|
margin-left: 20px;
|
}
|
}
|
|
&__headerbtn {
|
color: #73C4FF;
|
top: 0;
|
}
|
}
|
}
|
</style>
|