修改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);
padding: 0;
background-color: @component-background;
background: url(../resource/img/modalback.png);
.scrollbar__wrap {
padding: 16px !important;

View File

@ -1,5 +1,5 @@
<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 -->
<div :class="`${prefixCls}-left`">
<!-- logo -->

View File

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

View File

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