Skip to content

Cell 单元格

cell单元格一般用于一组列表的情况,比如个人中心页,设置页等。

平台差异说明

App(vue)App(nvue)H5微信小程序

基本使用

  • 该组件需要搭配cell-group使用,并由它实现列表组的上下边框,如不需要上下边框,配置cellGroupborder参数为false即可。
  • 通过title设置左侧标题,value设置右侧内容。
  • 通过icon字段设置图标,值为uView自带的Icon 图标名。

注意: 由于cell组件需要由cellGroup组件提供参数值,这些父子组件间通过Vue的"provide/inject"特性注入依赖, 所以您必须使用cellGroup包裹cell组件才能正常使用。

html
<template>
  <su-cell-group>
    <su-cell icon="setting-fill" title="个人设置"></su-cell>
    <su-cell icon="integral-fill" title="会员等级" value="新版本"></su-cell>
  </su-cell-group>
</template>

自定义内容

  • 通过插槽icon可以自定义图标,内容会替换左边图标位置
  • 通过插槽title定义左边标题部分
  • 通过插槽right-icon定义右边内容部分
html
<su-cell-group>
  <su-cell title="夕阳无限好" arrow-direction="down">
    <template #icon>
      <su-icon size="32" name="search"></su-icon>
    </template>
    <template #right-icon>
      <su-switch v-model="checked"></su-switch>
    </template>
  </su-cell>
  <su-cell icon="setting-fill" title="只是近黄昏"></su-cell>
</su-cell-group>

如上所示,可以给cell-item组件通过rightIcon设定右边sun-uni自带的badge或者switch组件:

  • 如果搭配的是badge组件,注意设置absolute参数为false去掉绝对定位,否则其位于右侧的恰当位置,详见Badge 徽标数
  • 如果搭配的是switch组件,注意要通过v-model绑定一个内容为布尔值的变量,否则无法操作switch,详见Switch 开关选择器

自定义大小

设置size可自定义大小

html
<su-cell-group>
  <su-cell size="large" title="单元格" value="内容" isLink></su-cell>
  <su-cell size="mini" title="单元格" value="内容" label="描述信息"></su-cell>
</su-cell-group>

展示右箭头

设置arrowtrue,将会显示右侧的箭头,可以通过arrow-direction控制箭头的方向

html
<su-cell-group>
  <su-cell icon="share" title="停车坐爱枫林晚" :arrow="true" arrow-direction="down"></su-cell>
  <su-cell icon="map" title="霜叶红于二月花" :arrow="false"></su-cell>
</su-cell-group>

跳转页面

设置isLinktrue,单元格点击可跳转页面,传入url设置跳转地址

html
<su-cell-group>
  <su-cell title="打开标签页" isLink url="/pages/componentsB/tag/tag"></su-cell>
  <su-cell title="打开徽标页" isLink url="/pages/componentsB/badge/badge"></su-cell>
</su-cell-group>

右侧内容垂直居中

设置centertrue,可将右侧内容垂直居中

html
<su-cell-group>
  <su-cell title="单元格" value="内容" label="描述信息" center></su-cell>
</su-cell-group>

自定义插槽

设置slottitle,可自定义左侧区域内容 设置slotvalue,可自定义右侧区域内容

html
<su-cell-group>
  <su-cell value="内容">
    <template #title>
      <view class="u-slot-title">
        <text class="u-cell-text">单元格</text>
        <su-tag text="标签" plain size="mini" type="warning"></su-tag>
      </view>
    </template>
  </su-cell>
  <su-cell title="单元格" isLink>
    <template #value>
      <text class="u-slot-value">99</text>
    </template>
  </su-cell>
</su-cell-group>

示例源码

点击可以查看 右侧演示页面的源码

API

CellGroup Props

参数说明类型默认值可选值
title分组标题String--
border是否显示外边框Booleantruefalse
custom-style分组标题的的样式,对象形式,如{'font-size': '24rpx'} 或 {'fontSize': '24rpx'}object--

CellItem Props

参数说明类型默认值可选值
custom-style分组标题的的样式,对象形式,如{'font-size': '24rpx'} 或 {'fontSize': '24rpx'}object--
title左侧标题String--
icon左侧图标名,只支持uView内置图标,见Icon 图标String--
icon-styleicon的样式,对象形式Object--
value右侧内容String--
label标题下方的描述信息String--
border-bottom是否显示cell的下边框Booleantruefalse
border-top是否显示cell的上边框Booleanfalsetrue
border-gapborder-bottomtrue时,Cell列表中间的条目的下边框是否与左边有一个间隔 Booleantruefalse
hover-class是否开启点击反馈,none为无效果,见上方说明String-none
arrow是否显示右侧箭头,开启的话,将会默认带上点击反馈,可通过hover-class配置Booleantruefalse
arrow-direction箭头方向,可选值为Stringrightup / down
title-style标题样式,对象形式Object--
required是否显示左边表示必填的星号Booleanfalsetrue
value-style右侧内容样式,对象形式Object--
label-style标题下方描述信息的样式,对象形式Object--
bg-color背景颜色,默认透明背景Stringtransparent-
index用于在click事件回调中返回,标识当前是第几个ItemString | Number--
title-width标题的宽度,单位rpxNumber | String--
icon-size左边通过icon参数传入的图标的大小,单位rpxNumber | String34-
center是否使内容垂直居中Booleanfalsetrue

CellItem Slot

名称说明
title自定义左侧标题部分的内容,如需使用,请勿定义title参数,或赋值null即可
icon自定义左侧的图标
right-icon自定义右侧图标内容,需设置arrowfalse才起作用
label自定义label内容

CellItem Event

事件名说明回调参数
click点击cell列表时触发index: 通过props传递的index参数

Released under the MIT License.

Released under the MIT License.