提交 3b900d0e authored 作者: chlolch's avatar chlolch

修改bug

上级 6e28e2ce
......@@ -79,7 +79,7 @@ export default class isNewTable extends Component {
? ary.content.calign
: 'left',
borderBottom: '1px solid white',
display:ary.content&&ary.content.isMobileHidden&&"none"
display:ary.content&& (ary.content.comName === 'InputHidden' || ary.content.isMobileHidden)&&"none"
}}
>
<TableCom
......@@ -120,7 +120,7 @@ export default class isNewTable extends Component {
</>
);
}
// if (isRowCol) {
return items.map((item, i) => {
const allhidden = checkAllHidden(items);
return (
......@@ -139,7 +139,7 @@ export default class isNewTable extends Component {
}
}
if (ary.content?.comName === 'Label') {
console.log(ary);
return (
<Col
style={{
......@@ -232,134 +232,6 @@ export default class isNewTable extends Component {
</Row>
);
});
/* }
return items.map((item, i) => {
const allhidden = checkAllHidden(items);
return (
<>
{' '}
<Card
full
style={{
...style,
}}
border={false}
>
{item.map((ary, j) => {
if (!ary.content) {
return;
}
let styles = {};
if (ary.content && ary.content.styles) {
try {
styles = JSON.parse(ary.content.styles);
} catch (e) {
console.log(`第${i}行第${j}列样式配置有误,${e}`);
}
}
if (ary.content && ary.content.comName === 'Label') {
return (
<Card.Header
title={
!allhidden && ary.hidden ? (
''
) : (
<div
style={{
width: '100%',
height: '100%',
...styles,
display:
ary.content &&
(ary.content.comName === 'InputHidden' ||
ary.content.isMobileHidden) &&
'none',
}}
>
<TableCom
taskAssignee={taskAssignee}
modalInit={modalInit}
formCode={formCode}
formId={formId}
i={i}
j={j}
index={index}
fatherCode={fatherCode}
datas={datas}
isEdit={isEdit}
fatherObj={this.props.fatherObj}
formKey={currentFormKey}
init={init}
get={get}
key={j}
sqlData={sqlData}
obj={obj || {}}
form={this.props.form}
mapData={mapData}
json={ary.content}
uuid={ary.uuid}
routerState={routerState} // 兼容表单设计器路由传参
defaultValues={defaultValues || {}}
messageData={messageData} // 场景设计器共享变量参数
/>
</div>
)
}
/>
);
}
return !allhidden && ary.hidden ? (
''
) : (
<Card.Body
style={{
// textAlign:ary.content&&ary.content.comName === 'Table'?"left":'right'
display:
ary.content &&
(ary.content.comName === 'InputHidden' || ary.content.isMobileHidden) &&
'none',
}}
>
{' '}
<div
style={{
...styles,
}}
>
<TableCom
taskAssignee={taskAssignee}
modalInit={modalInit}
formCode={formCode}
formId={formId}
i={i}
j={j}
index={index}
fatherCode={fatherCode}
datas={datas}
isEdit={isEdit}
fatherObj={this.props.fatherObj}
formKey={currentFormKey}
init={init}
get={get}
key={j}
sqlData={sqlData}
obj={obj || {}}
form={this.props.form}
mapData={mapData}
json={ary.content}
uuid={ary.uuid}
routerState={routerState} // 兼容表单设计器路由传参
defaultValues={defaultValues || {}}
messageData={messageData} // 场景设计器共享变量参数
/>
</div>
</Card.Body>
);
})}
</Card>
<WhiteSpace />
</>
);
});*/
}
}
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论