| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315 | <template>  <view      @tap="click"      class="u-cell"      :class="{ 'u-border-bottom': borderBottom, 'u-border-top': borderTop, 'u-col-center': center, 'u-cell--required': required }"      hover-stay-time="150"      :hover-class="hoverClass"      :style="{			backgroundColor: bgColor		}"  >    <u-icon :size="iconSize" :name="icon" v-if="icon" :custom-style="iconStyle" class="u-cell__left-icon-wrap"></u-icon>    <view class="u-flex" v-else>      <slot name="icon"></slot>    </view>    <view        class="u-cell_title"        :style="[				{					width: titleWidth ? titleWidth + 'rpx' : 'auto'				},				titleStyle			]"    >      <block v-if="title !== ''">{{ title }}</block>      <slot name="title" v-else></slot>      <view class="u-cell__label" v-if="label || $slots.label" :style="[labelStyle]">        <block v-if="label !== ''">{{ label }}</block>        <slot name="label" v-else></slot>      </view>    </view>    <view class="u-cell__value" :style="[valueStyle]">      <block class="u-cell__value" v-if="value !== ''">{{ value }}</block>      <slot v-else></slot>    </view>    <view class="u-flex u-cell_right" v-if="$slots['right-icon']">      <slot name="right-icon"></slot>    </view>    <u-icon v-if="arrow" name="arrow-right" :style="[arrowStyle]" class="u-icon-wrap u-cell__right-icon-wrap"></u-icon>  </view></template><script>/** * cellItem 单元格Item * @description cell单元格一般用于一组列表的情况,比如个人中心页,设置页等。搭配u-cell-group使用 * @tutorial https://www.uviewui.com/components/cell.html * @property {String} title 左侧标题 * @property {String} icon 左侧图标名,只支持uView内置图标,见Icon 图标 * @property {Object} icon-style 左边图标的样式,对象形式 * @property {String} value 右侧内容 * @property {String} label 标题下方的描述信息 * @property {Boolean} border-bottom 是否显示cell的下边框(默认true) * @property {Boolean} border-top 是否显示cell的上边框(默认false) * @property {Boolean} center 是否使内容垂直居中(默认false) * @property {String} hover-class 是否开启点击反馈,none为无效果(默认true) * // @property {Boolean} border-gap border-bottom为true时,Cell列表中间的条目的下边框是否与左边有一个间隔(默认true) * @property {Boolean} arrow 是否显示右侧箭头(默认true) * @property {Boolean} required 箭头方向,可选值(默认right) * @property {Boolean} arrow-direction 是否显示左边表示必填的星号(默认false) * @property {Object} title-style 标题样式,对象形式 * @property {Object} value-style 右侧内容样式,对象形式 * @property {Object} label-style 标题下方描述信息的样式,对象形式 * @property {String} bg-color 背景颜色(默认transparent) * @property {String Number} index 用于在click事件回调中返回,标识当前是第几个Item * @property {String Number} title-width 标题的宽度,单位rpx * @example <u-cell-item icon="integral-fill" title="会员等级" value="新版本"></u-cell-item> */export default {  name: 'u-cell-item',  props: {    // 左侧图标名称(只能uView内置图标),或者图标src    icon: {      type: String,      default: ''    },    // 左侧标题    title: {      type: [String, Number],      default: ''    },    // 右侧内容    value: {      type: [String, Number],      default: ''    },    // 标题下方的描述信息    label: {      type: [String, Number],      default: ''    },    // 是否显示下边框    borderBottom: {      type: Boolean,      default: true    },    // 是否显示上边框    borderTop: {      type: Boolean,      default: false    },    // 多个cell中,中间的cell显示下划线时,下划线是否给一个到左边的距离    // 1.4.0版本废除此参数,默认边框由border-top和border-bottom提供,此参数会造成干扰    // borderGap: {    // 	type: Boolean,    // 	default: true    // },    // 是否开启点击反馈,即点击时cell背景为灰色,none为无效果    hoverClass: {      type: String,      default: 'u-cell-hover'    },    // 是否显示右侧箭头    arrow: {      type: Boolean,      default: true    },    // 内容是否垂直居中    center: {      type: Boolean,      default: false    },    // 是否显示左边表示必填的星号    required: {      type: Boolean,      default: false    },    // 标题的宽度,单位rpx    titleWidth: {      type: [Number, String],      default: ''    },    // 右侧箭头方向,可选值:right|up|down,默认为right    arrowDirection: {      type: String,      default: 'right'    },    // 控制标题的样式    titleStyle: {      type: Object,      default() {        return {};      }    },    // 右侧显示内容的样式    valueStyle: {      type: Object,      default() {        return {};      }    },    // 描述信息的样式    labelStyle: {      type: Object,      default() {        return {};      }    },    // 背景颜色    bgColor: {      type: String,      default: 'transparent'    },    // 用于识别被点击的是第几个cell    index: {      type: [String, Number],      default: ''    },    // 是否使用lable插槽    useLabelSlot: {      type: Boolean,      default: false    },    // 左边图标的大小,单位rpx,只对传入icon字段时有效    iconSize: {      type: [Number, String],      default: 34    },    // 左边图标的样式,对象形式    iconStyle: {      type: Object,      default() {        return {}      }    },  },  data() {    return {};  },  computed: {    arrowStyle() {      let style = {};      if (this.arrowDirection == 'up') style.transform = 'rotate(-90deg)';      else if (this.arrowDirection == 'down') style.transform = 'rotate(90deg)';      else style.transform = 'rotate(0deg)';      return style;    }  },  methods: {    click() {      this.$emit('click', this.index);    }  }};</script><style lang="scss" scoped>@import "../../libs/css/style.components.scss";.u-cell {  @include vue-flex;  align-items: center;  position: relative;  /* #ifndef APP-NVUE */  box-sizing: border-box;  /* #endif */  width: 100%;  padding: 26 rpx 32 rpx;  font-size: 28 rpx;  line-height: 54 rpx;  color: $u-content-color;  background-color: #fff;  text-align: left;}.u-cell_title {  font-size: 28 rpx;}.u-cell__left-icon-wrap {  margin-right: 10 rpx;  font-size: 32 rpx;}.u-cell__right-icon-wrap {  margin-left: 10 rpx;  color: #969799;  font-size: 28 rpx;}.u-cell__left-icon-wrap,.u-cell__right-icon-wrap {  @include vue-flex;  align-items: center;  height: 48 rpx;}.u-cell-border:after {  position: absolute;  /* #ifndef APP-NVUE */  box-sizing: border-box;  content: ' ';  pointer-events: none;  border-bottom: 1px solid $u-border-color;  /* #endif */  right: 0;  left: 0;  top: 0;  transform: scaleY(0.5);}.u-cell-border {  position: relative;}.u-cell__label {  margin-top: 6 rpx;  font-size: 26 rpx;  line-height: 36 rpx;  color: $u-tips-color;  /* #ifndef APP-NVUE */  word-wrap: break-word;  /* #endif */}.u-cell__value {  overflow: hidden;  text-align: right;  /* #ifndef APP-NVUE */  vertical-align: middle;  /* #endif */  color: $u-tips-color;  font-size: 26 rpx;}.u-cell__title,.u-cell__value {  flex: 1;}.u-cell--required {  /* #ifndef APP-NVUE */  overflow: visible;  /* #endif */  @include vue-flex;  align-items: center;}.u-cell--required:before {  position: absolute;  /* #ifndef APP-NVUE */  content: '*';  /* #endif */  left: 8px;  margin-top: 4 rpx;  font-size: 14px;  color: $u-type-error;}.u-cell_right {  line-height: 1;}</style>
 |