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

29127 违纪,H5应用增加卡片组件

上级 49b3975a
...@@ -24,7 +24,8 @@ export default function MobileCard(props) { ...@@ -24,7 +24,8 @@ export default function MobileCard(props) {
return null; return null;
} }
const dataSource = value?.dataSource || otherProps?.defaultDataSource || []; const dataSource = value?.dataSource || otherProps?.defaultDataSource || [];
const { columns = [], primaryKey = '', style = {}, handleClick } = otherProps; const { columns = [], primaryKey = '', style = {}, handleClick, emptyDataInfo } = otherProps;
console.log(dataSource);
return ( return (
<> <>
{dataSource.map((g, index) => { {dataSource.map((g, index) => {
...@@ -91,6 +92,14 @@ export default function MobileCard(props) { ...@@ -91,6 +92,14 @@ export default function MobileCard(props) {
</div> </div>
); );
})} })}
{ // 没有数据的时候显示提示文字
(!Array.isArray(dataSource) || !dataSource.length) && !!emptyDataInfo &&
<div style={emptyDataInfo.style || {}}>
{emptyDataInfo.children}
</div>
}
</> </>
); );
} }
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论