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

MobileCard 组件bug

上级 8ac765fa
...@@ -35,7 +35,7 @@ export default function MobileCard(props) { ...@@ -35,7 +35,7 @@ export default function MobileCard(props) {
e.stopPropagation(); e.stopPropagation();
e.preventDefault(); e.preventDefault();
} }
return handleClick(g, value); handleClick(g,value);
} }
: undefined; : undefined;
return ( return (
...@@ -71,7 +71,7 @@ export default function MobileCard(props) { ...@@ -71,7 +71,7 @@ export default function MobileCard(props) {
hProps = h.diyProps(g, h.key || h, value) || {}; hProps = h.diyProps(g, h.key || h, value) || {};
} }
return ( return (
<div style={hProps.style} onClick={clickOneCell} key={h.key}> <div style={hProps.style} onClick={clickOneCell} key={h.key || h.value}>
{hProps.children ? ( {hProps.children ? (
<>{hProps.children}</> <>{hProps.children}</>
) : ( ) : (
......
...@@ -997,7 +997,7 @@ export default class TableCom extends Component { ...@@ -997,7 +997,7 @@ export default class TableCom extends Component {
}, },
); );
} }
} else if (json.comName == 'Button') { } else if (['Button', 'MobileCard'].includes(json.comName)) {
try { try {
callback(data); callback(data);
} catch (e) { } catch (e) {
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论