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

签名组件优化

上级 1ab0a62c
......@@ -2524,19 +2524,27 @@ ${obj[dataColumn.base52]}
break;
case 'Signature':
cm = (
<img
src={config.httpServer + obj[dataColumn.base52]}
style={{
marginLeft: 5,
width:
get === 'mobile'
? document.documentElement.clientWidth - 10 || document.body.clientWidth - 10
: json.width,
height: get === 'mobile' ? '' : json.height,
}}
/>
);
if (!obj[dataColumn.base52]) {
console.log('签名组件没有获取到图片地址', dataColumn.base52);
cm = '';
} else {
cm = (
<img
data-cell-component={'Signature'}
data-cell-base52={dataColumn.base52}
src={config.httpServer + obj[dataColumn.base52]}
style={{
marginLeft: 5,
width:
get === 'mobile'
? document.documentElement.clientWidth - 10 || document.body.clientWidth - 10
: json.width,
height: get === 'mobile' ? '' : json.height,
}}
/>
);
}
break;
case 'ChildForm':
......
......@@ -263,7 +263,7 @@ export const requestOrigin = (url, data, options = {}) => {
options.prefix = '';
}
if (getToken()) {
options.headers = getHeaders().headers;
options.headers = getHeaders(url).headers;
}
return fetchRequest(url, {
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论