mirror of
https://github.com/1Panel-dev/MaxKB.git
synced 2025-12-26 01:33:05 +00:00
parent
b40336f9d1
commit
3a7a14f590
|
|
@ -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;
|
||||
|
|
|
|||
|
|
@ -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()
|
||||
|
|
|
|||
|
|
@ -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
|
||||
})
|
||||
|
||||
|
|
|
|||
|
|
@ -142,7 +142,7 @@ const functionLibList = ref<any[]>([])
|
|||
|
||||
const paginationConfig = reactive({
|
||||
current_page: 1,
|
||||
page_size: 20,
|
||||
page_size: 30,
|
||||
total: 0
|
||||
})
|
||||
|
||||
|
|
|
|||
|
|
@ -198,7 +198,7 @@ const multipleSelection = ref<any[]>([])
|
|||
|
||||
const paginationConfig = reactive({
|
||||
current_page: 1,
|
||||
page_size: 20,
|
||||
page_size: 30,
|
||||
total: 0
|
||||
})
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue