fix: 修复嵌入式样式冲突问题

(cherry picked from commit 7a76f73682)
This commit is contained in:
wangdan-fit2cloud 2024-12-11 14:13:13 +08:00 committed by shaohuzhang1
parent b40336f9d1
commit 3a7a14f590
5 changed files with 5 additions and 4 deletions

View File

@ -272,6 +272,7 @@ function initMaxkbStyle(root){
position: absolute;
display: flex;
align-items: center;
line-height: 18px;
}
#maxkb #maxkb-chat-container .maxkb-operate .maxkb-chat-close{
margin-left:15px;

View File

@ -48,7 +48,7 @@ import { cloneDeep } from 'lodash'
import { ref, computed } from 'vue'
import EditParagraphDialog from './EditParagraphDialog.vue'
import { MsgConfirm } from '@/utils/message'
const page_size = ref<number>(20)
const page_size = ref<number>(30)
const current_page = ref<number>(1)
const currentCIndex = ref<number>(0)
const EditParagraphDialogRef = ref()

View File

@ -160,7 +160,7 @@ const loading = ref(false)
const datasetList = ref<any[]>([])
const paginationConfig = reactive({
current_page: 1,
page_size: 20,
page_size: 30,
total: 0
})

View File

@ -142,7 +142,7 @@ const functionLibList = ref<any[]>([])
const paginationConfig = reactive({
current_page: 1,
page_size: 20,
page_size: 30,
total: 0
})

View File

@ -198,7 +198,7 @@ const multipleSelection = ref<any[]>([])
const paginationConfig = reactive({
current_page: 1,
page_size: 20,
page_size: 30,
total: 0
})