高敬炎 f1d70420be 前端 | 1 éve | |
---|---|---|
.. | ||
pages | 1 éve | |
changelog.md | 1 éve | |
readme.md | 1 éve |
组件名:lxm-fold-grid 代码块:
lxm-fold-grid
基于Color UI 的宫格,本模板引用插件luyj-grid-link的主要功能包括:
HBuilderX 2.5.5
起,只需将本组件导入项目,在页面template
中即可直接使用,无需在页面中import
和注册components
。main.css
icon.css
。<style>
@import "colorui/main.css";
@import "colorui/icon.css";
@import "app.css"; /* 你的项目css */
....
</style>
在 template
中的使用
<luyj-grid-link :list="list" @gridExc="clickGrid"></luyj-grid-link>
这里 list
对应列表数据;@gridExc,对应没有链接属性时,宫格的执行方法,其中e.detail.dataset.exec
对应列表中宫格的exec
属性。这里引用了数据:
list: [{
title: '成员管理',
cur: 'applications',
bgColor: 'bg-blue light', // 背景颜色
color: 'blue',
title_show: false,
showAll: false,
colNumber: 3, // 显示的列数
iconsList: [{
cuIcon: 'group_fill',
color: 'blue',
name: '组织机构',
url: '/pages/toUrl/toUrl'
},
{
cuIcon: 'friendadd',
color: 'blue',
name: '无URL',
exec : 'add'
},
{
cuIcon: 'friendaddfill',
color: 'blue',
name: '无Url',
exec: 'invite'
},
]
},
{
title: '基础数据',
cur: 'basic',
bgColor: '', // 背景颜色
color: 'blue',
title_show: true,
showAll: false,
colNumber: 5, // 显示的列数
iconsList: [{
cuIcon: 'text',
color: 'yellow',
name: '基本信息',
url: '/pages/toUrl/toUrl'
},
{
cuIcon: 'peoplelist',
color: 'blue',
name: '员工管理',
url: '/pages/toUrl/toUrl'
},
]
}, {
title: '产品目录',
cur: 'goods',
bgColor: '', // 背景颜色
color: 'blue',
title_show: true,
showAll: false,
colNumber: 5, // 显示的列数
iconsList: [{
cuIcon: 'list',
color: 'yellow',
name: '分类',
url: '/pages/toUrl/toUrl'
},
{
cuIcon: 'goodsnew',
color: 'blue',
name: '型号',
url: '/pages/toUrl/toUrl'
},
{
cuIcon: 'shake',
color: 'olive',
name: '设备',
url: '/pages/toUrl/toUrl'
},
{
cuIcon: 'questionfill',
color: 'yellow',
name: '常见问题',
url: '/pages/toUrl/toUrl'
}
]
},
{
title: '权限管理',
cur: 'goods',
bgColor: '', // 背景颜色
color: 'blue',
title_show: true,
showAll: false,
colNumber: 5, // 显示的列数
iconsList: [{
cuIcon: 'goodsfill',
color: 'red',
name: '权限设置',
url: '/pages/toUrl/toUrl'
}]
}
],
属性名 | 类型 | 默认值 | 说明 |
---|---|---|---|
list | Arrary | [] | 宫格组,其中里面的每一组对象表示每一组宫格的展示 |
属性名 | 类型 | 是否必填 | 说明 |
---|---|---|---|
title | String | 是 | 标题 |
cur | String | 是 | 当前宫格组的名称(每组不能重名) |
bgColor | String | 是 | 宫格的背景颜,(可以为''),参考Color UI的样式 |
color | String | 是 | 标题字体的颜色 |
title_show | Boolean | 是 | 是否显示标题 |
showAll | Boolean | 是 | 是否默认展开所有宫格 |
colNumber | Number | 是 | 每行展示宫格的列数 |
iconsList | Array | 是 | 宫格的图标列表 |
属性名 | 类型 | 是否必填 | 说明 |
---|---|---|---|
cuIcon | String | 是 | 图标名称,参考ColorUI库 |
color | String | 是 | 宫格颜色 |
name | String | 是 | 名称 |
url | String | 否 | 宫格默认的跳转路径 |
exec | String | 否 | 存储参数(无Url时),宫格的参数。点击宫格是,@gridExc传递参数 |
事件名 | 说明 | 返回参数 |
---|---|---|
@gridExc | 宫格无跳转路径时,返回参数,用于区分宫格,执行不同操作 | value= {e.detail.dataset.exec} |
传奇开心果模板,名称:lxm-fold-gridV1.0.0,传奇开心果出品,2022.1.6