修改bug

This commit is contained in:
yangjun 2025-08-04 08:36:44 +08:00
parent 7770ca2941
commit a51b6ec316
4 changed files with 10 additions and 4 deletions

View File

@ -212,6 +212,7 @@
height: calc(100% - @header-height); height: calc(100% - @header-height);
padding: 0; padding: 0;
background-color: @component-background; background-color: @component-background;
background: url(../resource/img/modalback.png);
.scrollbar__wrap { .scrollbar__wrap {
padding: 16px !important; padding: 16px !important;

View File

@ -1,5 +1,5 @@
<template> <template>
<Header :class="getHeaderClass" style="background-image: url('../resource/img/bj.png');background-repeat: no-repeat;background-size: 100% auto;"> <Header :class="getHeaderClass" style="background-image: url('../resource/img/bj.png') !important;background-repeat: no-repeat;background-size: 100% auto;">
<!-- left start --> <!-- left start -->
<div :class="`${prefixCls}-left`"> <div :class="`${prefixCls}-left`">
<!-- logo --> <!-- logo -->

View File

@ -325,12 +325,13 @@ defineExpose({
} }
.ant-drawer .ant-drawer-body { .ant-drawer .ant-drawer-body {
flex: 1; flex: 111;
min-width: 0; min-width: 0;
min-height: 0; min-height: 0;
padding: 24px; padding: 24px;
overflow: auto; overflow: auto;
background: #dfdfdf; background: #dfdfdf;
background: url(../public/resource/img/modalback.png);
} }
.selected { .selected {

View File

@ -218,7 +218,7 @@
<template #footer> <template #footer>
<a-button type="primary" @click="onBodyTagClose" style="float: right;">关闭</a-button> <a-button type="primary" @click="onBodyTagClose" style="float: right;">关闭</a-button>
</template> </template>
<BodyTagList v-if="bodyTagOpen"></BodyTagList> <BodyTagList v-if="bodyTagOpen" class="backClass"></BodyTagList>
</a-drawer> </a-drawer>
<!-- 情绪标签 --> <!-- 情绪标签 -->
@ -226,7 +226,7 @@
<template #footer> <template #footer>
<a-button type="primary" @click="onEmotionTagClose" style="float: right;">关闭</a-button> <a-button type="primary" @click="onEmotionTagClose" style="float: right;">关闭</a-button>
</template> </template>
<EmotionTagList v-if="emotionTagOpen"></EmotionTagList> <EmotionTagList v-if="emotionTagOpen" class="backClass"></EmotionTagList>
</a-drawer> </a-drawer>
<!-- 音频播放 --> <!-- 音频播放 -->
@ -1051,4 +1051,8 @@ audio::-webkit-media-controls-time-remaining-display {
overflow-y: auto; overflow-y: auto;
} }
} }
.backClass{
background: url(../../resource/img/modalback.png);
}
</style> </style>