This commit is contained in:
qsh
2024-05-23 14:08:08 +08:00
parent 28c328d191
commit 3050b9a2fe
109 changed files with 479 additions and 3139 deletions

View File

@@ -59,7 +59,7 @@ const dialogStyle = computed(() => {
<template>
<ElDialog
:close-on-click-modal="true"
:close-on-click-modal="false"
:fullscreen="isFullscreen"
:width="width"
destroy-on-close

View File

@@ -167,7 +167,8 @@ const toolbarConfig = ref({
'group-indent', // 缩进
'emotion', // 表情
'undo', // 撤销
'redo' // 重做
'redo', // 重做
'fullScreen'
]
})

View File

@@ -4,12 +4,13 @@
v-show="total > 0"
v-model:current-page="currentPage"
v-model:page-size="pageSize"
:small="small"
:background="true"
:page-sizes="[10, 20, 30, 50, 100]"
:pager-count="pagerCount"
:total="total"
class="float-right mt-15px mb-15px"
layout="total, sizes, prev, pager, next, jumper"
:layout="layout"
@size-change="handleSizeChange"
@current-change="handleCurrentChange"
/>
@@ -38,6 +39,14 @@ const props = defineProps({
pagerCount: {
type: Number,
default: document.body.clientWidth < 992 ? 5 : 7
},
layout: {
type: String,
default: 'total, sizes, prev, pager, next, jumper'
},
small: {
type: Boolean,
default: false
}
})