From be028017a461af4c9745c69c4df084d4c3e6b296 Mon Sep 17 00:00:00 2001
From: zhengyiming <540361168@qq.com>
Date: 星期三, 22 十月 2025 18:08:49 +0800
Subject: [PATCH] fix: bug
---
src/fabric-editor/hooks/context.ts | 7 ++++---
1 files changed, 4 insertions(+), 3 deletions(-)
diff --git a/src/fabric-editor/hooks/context.ts b/src/fabric-editor/hooks/context.ts
index 79b9f26..21a9a99 100644
--- a/src/fabric-editor/hooks/context.ts
+++ b/src/fabric-editor/hooks/context.ts
@@ -12,6 +12,7 @@
checkTemplateParamObjectListNotNull,
convertJsonMapToTemplateParamObjectList,
} from '../utils';
+import { CanvasHeight, CanvasWidth } from '../constants';
export interface TemplateDetailContext {
templateDetail: Ref<API.GetContractTemplateQueryResult>;
@@ -186,9 +187,9 @@
recorder: x.recorder,
userType: x.userType,
bindProperty: x.bindProperty,
- x: x.left,
- y: x.top,
- pagey: x.pageNum + 1,
+ x: x.left / CanvasWidth,
+ y: x.top / CanvasHeight,
+ page: x.pageNum + 1,
} as API.SaveContractTemplateValuesCommandItem)
),
templateJsonData: JSON.stringify(templateEditState.jsonMap),
--
Gitblit v1.9.1