fix: 修复嵌入式样式冲突问题
This commit is contained in:
parent
f9437ca9b8
commit
7a76f73682
@ -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;
|
||||||
|
|||||||
@ -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()
|
||||||
|
|||||||
@ -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
|
||||||
})
|
})
|
||||||
|
|
||||||
|
|||||||
@ -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
|
||||||
})
|
})
|
||||||
|
|
||||||
|
|||||||
@ -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
|
||||||
})
|
})
|
||||||
|
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user