CellsCells是列表分组,常用于嵌套一组Cell或者Checkbox,注意,Checkbox-group和Cell组件都必须放在Cells组件下面,Cells效果如下图所示。 引入组件在 page.json 中引入组件 {
"usingComponents": {
"mp-cell": "../../components/cell/cell",
"mp-cells": "../../components/cells/cells"
}
}
示例代码<!--WXML示例代码-->
<mp-cells ext-class="my-cells" title="带说明的列表项">
<mp-cell value="标题文字" footer="说明文字"></mp-cell>
<mp-cell>
<view>标题文字(使用slot)</view>
<view slot="footer">说明文字</view>
</mp-cell>
</mp-cells>
// page.js示例代码
Page({
});
属性列表属性 | 类型 | 默认值 | 必填 | 说明 |
---|
ext-class | string | | 否 | 添加在组件内部结构的class,可用于修改组件内部的样式 | title | string | | 否 | Cells的标题 | footer | string | | 否 | Cells底部的文字 |
Slot
|
请发表评论