fix(crm/contract): 优化合同预览与导出的样式及重复渲染问题

1.  为产品内容组件添加值相等判断,避免重复解析内容
2.  统一合同预览和导出弹窗的表格边框样式为2px粗边框
3.  将合同预览的字体改为黑体并调整字重,优化显示效果
4.  调整表格字体粗细的配置标准
This commit is contained in:
2026-06-08 16:31:17 +08:00
parent fac59f4346
commit 59ceeed4a4
3 changed files with 39 additions and 36 deletions

View File

@@ -216,6 +216,9 @@ export default {
this.productName = '';
return;
}
if (newValue === this.jsonContent) {
return;
}
this.parseContent(newValue);
},
immediate: true