看板
This commit is contained in:
@@ -0,0 +1,56 @@
|
||||
import type { ExtractPropTypes, PropType } from 'vue';
|
||||
import type { CellItemArrowDirection } from '../../types/global';
|
||||
import { baseProps } from '../common/props';
|
||||
|
||||
/**
|
||||
* cell-item 组件 props 类型定义
|
||||
* @description 供 u-cell-item 组件 props 使用
|
||||
*/
|
||||
export type CellItemIndex = string | number;
|
||||
export type CellItemStyle = Record<string, any>;
|
||||
|
||||
export const CellItemProps = {
|
||||
...baseProps,
|
||||
/** 左侧图标名称(只能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背景为灰色,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 as PropType<CellItemArrowDirection>, default: 'right' },
|
||||
/** 控制标题的样式 */
|
||||
titleStyle: { type: Object as PropType<CellItemStyle>, default: () => ({}) },
|
||||
/** 右侧显示内容的样式 */
|
||||
valueStyle: { type: Object as PropType<CellItemStyle>, default: () => ({}) },
|
||||
/** 描述信息的样式 */
|
||||
labelStyle: { type: Object as PropType<CellItemStyle>, default: () => ({}) },
|
||||
/** 背景颜色 */
|
||||
bgColor: { type: String, default: 'transparent' },
|
||||
/** 用于识别被点击的是第几个cell */
|
||||
index: { type: [String, Number] as PropType<CellItemIndex>, default: '' },
|
||||
/** 是否使用label插槽 */
|
||||
useLabelSlot: { type: Boolean, default: false },
|
||||
/** 左边图标的大小,单位rpx,只对传入icon字段时有效 */
|
||||
iconSize: { type: [Number, String], default: 34 },
|
||||
/** 左边图标的样式,对象形式 */
|
||||
iconStyle: { type: Object as PropType<CellItemStyle>, default: () => ({}) }
|
||||
};
|
||||
|
||||
export type CellItemProps = ExtractPropTypes<typeof CellItemProps>;
|
||||
@@ -0,0 +1,220 @@
|
||||
<template>
|
||||
<view
|
||||
@tap="onClick"
|
||||
class="u-cell"
|
||||
:class="[
|
||||
{
|
||||
'u-border-bottom': borderBottom,
|
||||
'u-border-top': borderTop,
|
||||
'u-col-center': center,
|
||||
'u-cell--required': required
|
||||
},
|
||||
customClass
|
||||
]"
|
||||
hover-stay-time="150"
|
||||
:hover-class="hoverClass"
|
||||
:style="$u.toStyle({ backgroundColor: bgColor }, customStyle)"
|
||||
>
|
||||
<view v-if="icon" class="u-cell__left-icon-wrap">
|
||||
<u-icon :size="iconSize" :name="icon" :custom-style="iconStyle"></u-icon>
|
||||
</view>
|
||||
|
||||
<view class="u-flex" v-else>
|
||||
<slot name="icon"></slot>
|
||||
</view>
|
||||
<view class="u-cell_title" :style="[{ width: titleWidth ? titleWidth + 'rpx' : 'auto' }, titleStyle]">
|
||||
<template v-if="title !== ''">{{ title }}</template>
|
||||
<slot name="title" v-else></slot>
|
||||
<view class="u-cell__label" v-if="label || $slots.label" :style="[labelStyle]">
|
||||
<template v-if="label !== ''">{{ label }}</template>
|
||||
<slot name="label" v-else></slot>
|
||||
</view>
|
||||
</view>
|
||||
<view class="u-cell__value" :style="[valueStyle]">
|
||||
<template v-if="value !== ''">{{ value }}</template>
|
||||
<slot v-else></slot>
|
||||
</view>
|
||||
<view class="u-flex u-cell_right" v-if="$slots['right-icon']">
|
||||
<slot name="right-icon"></slot>
|
||||
</view>
|
||||
<view v-if="arrow" class="u-icon-wrap u-cell__right-icon-wrap">
|
||||
<u-icon name="arrow-right" :style="[arrowStyle]"></u-icon>
|
||||
</view>
|
||||
</view>
|
||||
</template>
|
||||
|
||||
<script lang="ts">
|
||||
export default {
|
||||
name: 'u-cell-item',
|
||||
options: {
|
||||
addGlobalClass: true,
|
||||
// #ifndef MP-TOUTIAO
|
||||
virtualHost: true,
|
||||
// #endif
|
||||
styleIsolation: 'shared'
|
||||
}
|
||||
};
|
||||
</script>
|
||||
|
||||
<script setup lang="ts">
|
||||
import { computed, useSlots } from 'vue';
|
||||
import { CellItemProps } from './types';
|
||||
import { $u } from '../..';
|
||||
|
||||
/**
|
||||
* cellItem 单元格Item
|
||||
* @description cell单元格一般用于一组列表的情况,比如个人中心页,设置页等。搭配u-cell-group使用
|
||||
* @tutorial https://uviewpro.cn/zh/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>
|
||||
*/
|
||||
|
||||
const emit = defineEmits<{ (e: 'click', index: string | number): void }>();
|
||||
|
||||
const props = defineProps(CellItemProps);
|
||||
|
||||
const $slots = useSlots();
|
||||
|
||||
/**
|
||||
* 箭头样式
|
||||
*/
|
||||
const arrowStyle = computed(() => {
|
||||
let style: Record<string, any> = {};
|
||||
if (props.arrowDirection === 'up') style.transform = 'rotate(-90deg)';
|
||||
else if (props.arrowDirection === 'down') style.transform = 'rotate(90deg)';
|
||||
else style.transform = 'rotate(0deg)';
|
||||
return style;
|
||||
});
|
||||
|
||||
/**
|
||||
* 点击事件
|
||||
*/
|
||||
function onClick() {
|
||||
emit('click', props.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: 26rpx 32rpx;
|
||||
font-size: 28rpx;
|
||||
line-height: 54rpx;
|
||||
color: $u-content-color;
|
||||
background-color: var(--u-bg-white);
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
.u-cell_title {
|
||||
font-size: 28rpx;
|
||||
}
|
||||
|
||||
.u-cell__left-icon-wrap {
|
||||
margin-right: 10rpx;
|
||||
font-size: 32rpx;
|
||||
}
|
||||
|
||||
.u-cell__right-icon-wrap {
|
||||
margin-left: 10rpx;
|
||||
color: var(--u-tips-color);
|
||||
font-size: 28rpx;
|
||||
}
|
||||
|
||||
.u-cell__left-icon-wrap,
|
||||
.u-cell__right-icon-wrap {
|
||||
@include vue-flex;
|
||||
align-items: center;
|
||||
height: 48rpx;
|
||||
}
|
||||
|
||||
.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: 6rpx;
|
||||
font-size: 26rpx;
|
||||
line-height: 36rpx;
|
||||
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: 26rpx;
|
||||
}
|
||||
|
||||
.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: 4rpx;
|
||||
font-size: 14px;
|
||||
color: $u-type-error;
|
||||
}
|
||||
|
||||
.u-cell_right {
|
||||
line-height: 1;
|
||||
}
|
||||
</style>
|
||||
Reference in New Issue
Block a user