适配鸿蒙

This commit is contained in:
icssoa
2025-08-03 13:40:19 +08:00
parent 65fa57a3f2
commit e2c62a20fc
4 changed files with 18 additions and 12 deletions

View File

@@ -521,8 +521,6 @@ function initCrop() {
container.height = windowHeight;
container.width = windowWidth;
console.log(container);
// 设置裁剪框尺寸为传入的初始值
cropBox.width = props.cropWidth; // 设置裁剪框宽度
cropBox.height = props.cropHeight; // 设置裁剪框高度
@@ -633,7 +631,7 @@ function onImageLoaded(e: UniImageLoadEvent) {
nextTick(() => {
// 执行初始化流程
initCrop(); // 初始化裁剪框位置和尺寸
reset(); // 重置裁剪框
setInitialImageSize(); // 设置图片初始显示尺寸
adjustBounds(); // 调整图片边界确保覆盖裁剪框
});

View File

@@ -376,8 +376,6 @@ function onTouchStart(e: UniTouchEvent) {
* 计算手指移动距离,更新弹出层位置
*/
function onTouchMove(e: UniTouchEvent) {
console.log(111);
if (swipe.isTouch) {
// 标记为移动状态
swipe.isMove = true;

View File

@@ -32,7 +32,7 @@ const props = defineProps({
// 画布宽度
width: {
type: Number,
default: () => uni.getWindowInfo().windowWidth
default: 300
},
// 画布高度
height: {