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

This commit is contained in:
wangdan-fit2cloud 2024-12-11 14:13:13 +08:00
parent f9437ca9b8
commit 7a76f73682
5 changed files with 5 additions and 4 deletions

View File

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

View File

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

View File

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

View File

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

View File

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