mirror of
https://github.com/pipipi-pikachu/PPTist.git
synced 2025-04-15 02:20:00 +08:00
perf: 优化UI
This commit is contained in:
parent
521c70d5b6
commit
5eb46e3e96
@ -64,6 +64,7 @@ const handleClick = () => {
|
|||||||
line-height: 24px;
|
line-height: 24px;
|
||||||
padding: 0 7px;
|
padding: 0 7px;
|
||||||
letter-spacing: 0;
|
letter-spacing: 0;
|
||||||
|
font-size: 12px;
|
||||||
}
|
}
|
||||||
|
|
||||||
&.default {
|
&.default {
|
||||||
|
@ -209,7 +209,7 @@ const startResize = (e: MouseEvent) => {
|
|||||||
justify-content: center;
|
justify-content: center;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
color: #666;
|
color: #666;
|
||||||
font-size: 12px;
|
font-size: 13px;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
}
|
}
|
||||||
.content {
|
.content {
|
||||||
|
@ -67,7 +67,7 @@
|
|||||||
@focus="replyNoteId = ''; activeNoteId = ''"
|
@focus="replyNoteId = ''; activeNoteId = ''"
|
||||||
/>
|
/>
|
||||||
<div class="footer">
|
<div class="footer">
|
||||||
<Button class="btn" v-tooltip="'清空本页批注'" style="flex: 1" @click="clear()"><IconDelete /></Button>
|
<IconDelete class="btn icon" v-tooltip="'清空本页批注'" style="flex: 1" @click="clear()" />
|
||||||
<Button type="primary" class="btn" style="flex: 12" @click="createNote()">添加批注</Button>
|
<Button type="primary" class="btn" style="flex: 12" @click="createNote()">添加批注</Button>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@ -314,9 +314,20 @@ const close = () => {
|
|||||||
margin-top: 10px;
|
margin-top: 10px;
|
||||||
display: flex;
|
display: flex;
|
||||||
|
|
||||||
|
.btn {
|
||||||
|
display: flex;
|
||||||
|
justify-content: center;
|
||||||
|
align-items: center;
|
||||||
|
|
||||||
|
&.icon {
|
||||||
|
font-size: 18px;
|
||||||
|
color: #666;
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
.btn + .btn {
|
.btn + .btn {
|
||||||
margin-left: 8px;
|
margin-left: 8px;
|
||||||
flex-shrink: 0;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -145,7 +145,7 @@ watch(type, () => {
|
|||||||
justify-content: center;
|
justify-content: center;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
color: #666;
|
color: #666;
|
||||||
font-size: 12px;
|
font-size: 13px;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
@ -1,14 +1,20 @@
|
|||||||
<template>
|
<template>
|
||||||
<div class="layout-pool">
|
<div class="layout-pool">
|
||||||
<div
|
<div class="header">页面模板</div>
|
||||||
class="layout-item"
|
<div class="list">
|
||||||
v-for="slide in layouts"
|
<div
|
||||||
:key="slide.id"
|
class="layout-item"
|
||||||
@click="selectSlideTemplate(slide)"
|
v-for="slide in layouts"
|
||||||
>
|
:key="slide.id"
|
||||||
<ThumbnailSlide class="thumbnail" :slide="slide" :size="180" />
|
>
|
||||||
|
<ThumbnailSlide class="thumbnail" :slide="slide" :size="180" />
|
||||||
|
|
||||||
|
<div class="btns">
|
||||||
|
<Button class="btn" type="primary" size="small" @click="insertTemplate(slide)">插入模板</Button>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script lang="ts" setup>
|
<script lang="ts" setup>
|
||||||
@ -17,44 +23,73 @@ import { useSlidesStore } from '@/store'
|
|||||||
import type { Slide } from '@/types/slides'
|
import type { Slide } from '@/types/slides'
|
||||||
|
|
||||||
import ThumbnailSlide from '@/views/components/ThumbnailSlide/index.vue'
|
import ThumbnailSlide from '@/views/components/ThumbnailSlide/index.vue'
|
||||||
|
import Button from '@/components/Button.vue'
|
||||||
|
|
||||||
const emit = defineEmits<{
|
const emit = defineEmits<{
|
||||||
(event: 'select', payload: Slide): void
|
(event: 'select', payload: Slide): void
|
||||||
}>()
|
}>()
|
||||||
|
|
||||||
const { layouts } = storeToRefs(useSlidesStore())
|
const slidesStore = useSlidesStore()
|
||||||
|
const { layouts } = storeToRefs(slidesStore)
|
||||||
|
|
||||||
const selectSlideTemplate = (slide: Slide) => {
|
const insertTemplate = (slide: Slide) => {
|
||||||
emit('select', slide)
|
emit('select', slide)
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang="scss" scoped>
|
<style lang="scss" scoped>
|
||||||
.layout-pool {
|
.layout-pool {
|
||||||
width: 394px;
|
width: 382px;
|
||||||
height: 500px;
|
height: 500px;
|
||||||
|
}
|
||||||
|
.header {
|
||||||
|
height: 40px;
|
||||||
|
margin: -10px -10px 8px -10px;
|
||||||
|
padding: 10px 12px 0 12px;
|
||||||
|
background-color: $lightGray;
|
||||||
|
border-bottom: 1px solid $borderColor;
|
||||||
|
}
|
||||||
|
.list {
|
||||||
|
height: calc(100% - 40px);
|
||||||
padding: 2px;
|
padding: 2px;
|
||||||
margin-right: -12px;
|
margin-right: -10px;
|
||||||
padding-right: 12px;
|
padding-right: 10px;
|
||||||
overflow: auto;
|
overflow: auto;
|
||||||
|
|
||||||
@include flex-grid-layout();
|
@include flex-grid-layout();
|
||||||
}
|
}
|
||||||
.layout-item {
|
.layout-item {
|
||||||
|
position: relative;
|
||||||
@include flex-grid-layout-children(2, 48%);
|
@include flex-grid-layout-children(2, 48%);
|
||||||
|
|
||||||
&:nth-last-child(2), &:last-child {
|
&:nth-last-child(2), &:last-child {
|
||||||
margin-bottom: 0;
|
margin-bottom: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
&:hover .btns {
|
||||||
|
opacity: 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
&:hover .thumbnail {
|
||||||
|
outline-color: $themeColor;
|
||||||
|
}
|
||||||
|
|
||||||
|
.btns {
|
||||||
|
@include absolute-0();
|
||||||
|
|
||||||
|
flex-direction: column;
|
||||||
|
justify-content: center;
|
||||||
|
align-items: center;
|
||||||
|
display: flex;
|
||||||
|
background-color: rgba($color: #000, $alpha: .25);
|
||||||
|
opacity: 0;
|
||||||
|
transition: opacity $transitionDelay;
|
||||||
|
}
|
||||||
|
|
||||||
.thumbnail {
|
.thumbnail {
|
||||||
outline: 2px solid $borderColor;
|
outline: 2px solid $borderColor;
|
||||||
transition: outline $transitionDelay;
|
transition: outline $transitionDelay;
|
||||||
|
border-radius: $borderRadius;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
|
|
||||||
&:hover {
|
|
||||||
outline-color: $themeColor;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
@ -281,8 +281,8 @@
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="btns">
|
<div class="btns">
|
||||||
<div class="btn" @click="applyPresetThemeToSingleSlide(item)">应用</div>
|
<Button type="primary" size="small" @click="applyPresetThemeToSingleSlide(item)">应用</Button>
|
||||||
<div class="btn" @click="applyPresetThemeToAllSlides(item)">应用全局</div>
|
<Button type="primary" size="small" style="margin-top: 3px;" @click="applyPresetThemeToAllSlides(item)">应用全局</Button>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@ -505,22 +505,5 @@ const updateViewportRatio = (value: number) => {
|
|||||||
opacity: 0;
|
opacity: 0;
|
||||||
transition: opacity $transitionDelay;
|
transition: opacity $transitionDelay;
|
||||||
}
|
}
|
||||||
.btn {
|
|
||||||
width: 72px;
|
|
||||||
padding: 5px 0;
|
|
||||||
text-align: center;
|
|
||||||
background-color: $themeColor;
|
|
||||||
color: #fff;
|
|
||||||
font-size: 12px;
|
|
||||||
border-radius: $borderRadius;
|
|
||||||
|
|
||||||
&:hover {
|
|
||||||
background-color: $themeHoverColor;
|
|
||||||
}
|
|
||||||
|
|
||||||
& + .btn {
|
|
||||||
margin-top: 5px;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
Loading…
x
Reference in New Issue
Block a user