123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210 |
- <template>
- <view :class="disabled ? 'uni-list-item--disabled' : ''"
- :hover-class="disabled || showSwitch ? '' : 'uni-list-item--hover'" class="uni-list-item" @click="onClick">
- <view class="uni-list-item__container" :class="show_border?'show_border':''">
- <view v-if="thumb" class="uni-list-item__icon">
- <image :src="thumb" class="uni-list-item__icon-img" />
- </view>
- <view v-else-if="showExtraIcon" class="uni-list-item__icon">
- <uni-icon :color="extraIcon.color" :size="extraIcon.size" :type="extraIcon.type" />
- </view>
- <view class="uni-list-item__content">
- <view class="uni-list-item__content-title">{{ title }}</view>
- <view v-if="note" class="uni-list-item__content-note">{{ note }}</view>
- </view>
- <view class="uni-list-item__extra">
- <text v-if="rightText" class="uni-list-item__extra-text">{{rightText}}</text>
- <uni-badge v-if="showBadge" :type="badgeType" :text="badgeText" />
- <switch v-if="showSwitch" :disabled="disabled" :checked="switchChecked" @change="onSwitchChange" />
- <slot name="right"></slot>
- <uni-icons v-if="showArrow" :size="24" class="uni-icon-wrapper" color="#bbb" type="arrowright" />
- </view>
- </view>
- </view>
- </template>
- <script>
- import uniIcon from '../uni-icon/uni-icon.vue'
- import uniBadge from '../uni-badge/uni-badge.vue'
- export default {
- name: 'UniListItem',
- components: {
- uniIcon,
- uniBadge
- },
- props: {
- title: {
- type: String,
- default: ''
- }, // 列表标题
- note: {
- type: String,
- default: ''
- }, // 列表描述
- disabled: { // 是否禁用
- type: Boolean,
- default: false
- },
- showArrow: { // 是否显示箭头
- type: Boolean,
- default: true
- },
- rightText: { // 右侧文字
- type: Boolean,
- default: false
- },
- showBadge: { // 是否显示数字角标
- type: Boolean,
- default: false
- },
- showSwitch: { // 是否显示Switch
- type: Boolean,
- default: false
- },
- switchChecked: { // Switch是否被选中
- type: Boolean,
- default: false
- },
- badgeText: {
- type: [String, Number],
- default: ''
- }, // badge内容
- badgeType: { // badge类型
- type: String,
- default: 'success'
- },
- thumb: {
- type: String,
- default: ''
- }, // 缩略图
- showExtraIcon: { // 是否显示扩展图标
- type: Boolean,
- default: false
- },
- extraIcon: {
- type: Object,
- default () {
- return {
- type: 'contact',
- color: '#000000',
- size: 20
- }
- }
- },
- show_border: {
- type: Boolean,
- default: true, //默认显示底部边框
- }
- },
- data() {
- return {
- }
- },
- methods: {
- onClick() {
- this.$emit('click')
- },
- onSwitchChange(e) {
- this.$emit('switchChange', e.detail)
- }
- }
- }
- </script>
- <style>
- @charset "UTF-8";
- .uni-list-item {
- font-size: 32upx;
- position: relative;
- display: flex;
- flex-direction: column;
- justify-content: space-between;
- align-items: center
- }
- .uni-list-item--disabled {
- opacity: .3
- }
- .uni-list-item--hover {
- background-color: #f1f1f1
- }
- .uni-list-item__container {
- padding: 32upx 30upx;
- width: 100%;
- box-sizing: border-box;
- flex: 1;
- position: relative;
- display: flex;
- flex-direction: row;
- justify-content: space-between;
- align-items: center
- }
- .show_border:after {
- position: absolute;
- z-index: 3;
- right: 0;
- bottom: 0;
- left: 30upx;
- height: 1px;
- content: '';
- -webkit-transform: scaleY(.5);
- transform: scaleY(.5);
- background-color: #c8c7cc
- }
- .uni-list-item__content {
- flex: 1;
- overflow: hidden;
- display: flex;
- flex-direction: column
- }
- .uni-list-item__content-title {
- font-size: 32upx;
- text-overflow: ellipsis;
- white-space: nowrap;
- color: inherit;
- line-height: 1.5;
- overflow: hidden
- }
- .uni-list-item__content-note {
- color: #999;
- font-size: 28upx;
- white-space: normal;
- display: -webkit-box;
- -webkit-box-orient: vertical;
- -webkit-line-clamp: 2;
- overflow: hidden
- }
- .uni-list-item__extra {
- /*width: 25%;*/
- display: flex;
- flex-direction: row;
- justify-content: flex-end;
- align-items: center
- }
- .uni-list-item__icon {
- margin-right: 18upx;
- display: flex;
- flex-direction: row;
- justify-content: center;
- align-items: center
- }
- .uni-list-item__icon-img {
- height: 52upx;
- width: 52upx;
- }
- .uni-list>.uni-list-item:last-child .uni-list-item-container:after {
- height: 0
- }
- </style>
|