修改图片压缩规则,优化样式

This commit is contained in:
eoao
2025-06-06 19:20:59 +08:00
parent 8054c0390c
commit ea309f9171
9 changed files with 46 additions and 37 deletions

View File

@@ -208,9 +208,13 @@ const handleDelete = () => {
.container {
font-size: 14px;
padding-left: 15px;
padding-right: 15px;
padding-left: 20px;
padding-right: 20px;
padding-top: 10px;
@media (max-width: 1023px) {
padding-left: 15px;
padding-right: 15px;
}
.email-title {
font-size: 20px;
@@ -299,7 +303,11 @@ const handleDelete = () => {
.email-info {
border-bottom: 1px solid #e7e9ec;
margin-bottom: 15px;
margin-bottom: 20px;
padding-bottom: 8px;
@media (max-width: 1024px) {
margin-bottom: 15px;
}
.date {
color: #585d69;
margin-bottom: 6px;

View File

@@ -285,7 +285,7 @@
:centerBox="true"
:full="true"
:autoCrop="true"
:outputSize="0.9"
:outputSize="0.92"
></vueCropper>
</div>
<div class="cut-button">
@@ -304,7 +304,6 @@ import {useSettingStore} from "@/store/setting.js";
import {useUserStore} from "@/store/user.js";
import {useAccountStore} from "@/store/account.js";
import {Icon} from "@iconify/vue";
import {compressImage} from "@/utils/file-utils.js";
import {cvtR2Url} from "@/utils/convert.js";
import {storeToRefs} from "pinia";
import { debounce } from 'lodash-es'
@@ -424,8 +423,7 @@ function openCut() {
doc.setAttribute('accept', 'image/*')
doc.click()
doc.onchange = async (e) => {
const image = await compressImage(e.target.files[0], 0.9)
cutImage.value = URL.createObjectURL(image)
cutImage.value = URL.createObjectURL(e.target.files[0])
cutShow.value = true
}
}
@@ -550,7 +548,7 @@ function editSetting(settingForm, refreshStatus = true) {
@media (max-width: 500px) {
grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}
@media (max-width: 767px) {
@media (max-width: 1023px) {
gap: 15px;
padding: 15px;
}