Commit e076b125 authored by GuanHua's avatar GuanHua

feat:修复模板列表不同屏幕大小显示问题

parent 39ed5de9
......@@ -32,7 +32,7 @@ const ChannelTemplate: React.FC<ShopCenterTemplatePropsType> = (props) => {
<Row gutter={24} className={styles.template_list}>
{
templateList.map(item => (
<Col span={6} key={item.id}>
<Col xxl={6} xl={8} lg={12} key={item.id}>
<TemplateItem templateInfo={item} type="shop" />
</Col>
))
......
......@@ -33,7 +33,7 @@ const ShopCenterTemplate: React.FC<ShopCenterTemplatePropsType> = (props) => {
<Row gutter={24} className={styles.template_list}>
{
templateList.map(item => (
<Col span={6} key={item.id}>
<Col xxl={6} xl={8} lg={12} key={item.id}>
<TemplateItem templateInfo={item} type="mall" />
</Col>
))
......
......@@ -32,7 +32,7 @@ const ShopTemplate: React.FC<ShopCenterTemplatePropsType> = (props) => {
<Row gutter={24} className={styles.template_list}>
{
templateList.map(item => (
<Col span={6} key={item.id}>
<Col xxl={6} xl={8} lg={12} key={item.id}>
<TemplateItem templateInfo={item} type="shop" />
</Col>
))
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment