提交 b10e616c authored 作者: 钟是志's avatar 钟是志

签章图片存在缓存.

上级 1f475cf5
...@@ -21,9 +21,8 @@ const getContent = (signConfig = [], ratioX) => { ...@@ -21,9 +21,8 @@ const getContent = (signConfig = [], ratioX) => {
if (g.type === 'text') { if (g.type === 'text') {
g.fontSize = Math.ceil(g.fontSize * ratioX); g.fontSize = Math.ceil(g.fontSize * ratioX);
g.y = g.y + Math.ceil(20 * ratioX); g.y = g.y + (g.offsetY || 0);
console.log('签章文字y偏移量: ', g?.word, g.y); g.x = g.x + (g.offsetX || 0);
// g.x = g.x + 20;
} }
if (g.type === 'image') { if (g.type === 'image') {
g.w = Math.ceil(g.w * ratioX); g.w = Math.ceil(g.w * ratioX);
...@@ -261,7 +260,7 @@ export default function PictureSignature({ ...@@ -261,7 +260,7 @@ export default function PictureSignature({
{!openEdit && ( // 不开启签章功能 只是预览图片 {!openEdit && ( // 不开启签章功能 只是预览图片
<div className={styles.readOnlyImage}> <div className={styles.readOnlyImage}>
<img <img
src={basicUrl + fileInfo?.path} src={basicUrl + fileInfo?.path + `?v=${Math.random()}`}
alt={fileInfo.name} alt={fileInfo.name}
style={{ style={{
width: `${showImageWidth}px`, width: `${showImageWidth}px`,
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论