Blame view
src/components/UniCollapseItem/UniCollapseItem.vue
6.64 KB
71166190e add purchase |
1 |
<template> |
323398550 若干功能添加 |
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 |
<view :class="{ 'uni-collapse-cell--disabled': disabled,'uni-collapse-cell--notdisabled': !disabled, 'uni-collapse-cell--open': isOpen,'uni-collapse-cell--hide':!isOpen }" class="uni-collapse-cell" > <view class="uni-collapse-cell__title" @click="onClick" > <view v-if="iconText" class="uni-collapse-cell__title-iconText" v-bind:style="{background:background}" >{{iconText}}</view> <image v-if="thumb" :src="thumb" class="uni-collapse-cell__title-img" /> <text class="uni-collapse-cell__title-text">{{ title }}</text> <text class="uni-collapse-cell__time-text">{{ time }}</text> <!-- #ifdef MP-ALIPAY --> <view :class="{ 'uni-collapse-cell__title-arrow-active': isOpen, 'uni-collapse-cell--animation': showAnimation === true }" class="uni-collapse-cell__title-arrow" > <uni-icons color="#bbb" size="20" type="arrowdown" /> </view> <!-- #endif --> <!-- #ifndef MP-ALIPAY --> <uni-icons :class="{ 'uni-collapse-cell__title-arrow-active': isOpen, 'uni-collapse-cell--animation': showAnimation === true }" class="uni-collapse-cell__title-arrow" color="#bbb" size="20" type="arrowdown" /> <!-- #endif --> </view> <view :class="{'uni-collapse-cell__content--hide':!isOpen}" class="uni-collapse-cell__content" > <view :class="{ 'uni-collapse-cell--animation': showAnimation === true }" class="uni-collapse-cell__wrapper" :style="{'transform':isOpen?'translateY(0)':'translateY(-100%)','-webkit-transform':isOpen?'translateY(0)':'translateY(-100%)'}" > <slot /> </view> </view> </view> |
71166190e add purchase |
57 58 59 |
</template> <script> |
323398550 若干功能添加 |
60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 |
import UniIcons from '../UniIcons/UniIcons.vue' export default { name: 'UniCollapseItem', components: { UniIcons }, props: { title: { // 列表标题 type: String, default: '' }, time: { // 列表时间 朱海涛加的,验光数据需要 type: String, default: '' }, name: { // 唯一标识符 type: [Number, String], default: 0 }, disabled: { // 是否禁用 type: Boolean, default: false }, showAnimation: { // 是否显示动画 type: Boolean, default: false }, open: { // 是否展开 type: Boolean, default: false }, thumb: { // 缩略图 type: String, default: '' }, iconText: { // 名字头像 type: String, default: '' } }, data() { return { isOpen: false, background: '' } }, watch: { open(val) { this.isOpen = val } }, inject: ['collapse'], created() { this.isOpen = this.open this.nameSync = this.name ? this.name : this.collapse.childrens.length this.collapse.childrens.push(this) if (String(this.collapse.accordion) === 'true') { if (this.isOpen) { const lastEl = this.collapse.childrens[this.collapse.childrens.length - 2] if (lastEl) { this.collapse.childrens[this.collapse.childrens.length - 2].isOpen = false } } } }, computed: { // 给头像搞个随机背景颜色,验光数据页面需要 getRandomColor() { const r = Math.floor(Math.random() * 256) const g = Math.floor(Math.random() * 256) const b = Math.floor(Math.random() * 256) const color = '#' + r.toString(16) + g.toString(16) + b.toString(16) this.background = color // return color; } }, methods: { onClick() { if (this.disabled) { return } if (String(this.collapse.accordion) === 'true') { this.collapse.childrens.forEach(vm => { if (vm === this) { return } vm.isOpen = false }) } this.isOpen = !this.isOpen this.collapse.onChange && this.collapse.onChange() this.$forceUpdate() // console.log(this.isOpen) } } } |
71166190e add purchase |
165 166 167 |
</script> <style lang="scss" scoped> |
323398550 若干功能添加 |
168 |
@import "@/uni.scss"; |
71166190e add purchase |
169 |
|
323398550 若干功能添加 |
170 171 172 173 174 175 |
.uni-collapse-cell { flex-direction: column; border-color: #ffffff; border-bottom-width: 1px; border-bottom-style: solid; } |
71166190e add purchase |
176 |
|
323398550 若干功能添加 |
177 178 179 |
.uni-collapse-cell--hover { background-color: #ffffff; } |
71166190e add purchase |
180 |
|
323398550 若干功能添加 |
181 182 183 |
.uni-collapse-cell--open { background-color: #ffffff; } |
71166190e add purchase |
184 |
|
323398550 若干功能添加 |
185 186 187 188 |
.uni-collapse-cell--disabled { background-color: #ffffff; // opacity: 0.3; } |
71166190e add purchase |
189 |
|
323398550 若干功能添加 |
190 191 192 |
.uni-collapse-cell--hide { height: 48px; } |
71166190e add purchase |
193 |
|
323398550 若干功能添加 |
194 195 196 197 198 199 |
.uni-collapse-cell--animation { transition: transform all 0.5s ease; transition-property: transform; transition-duration: 0.5s; transition-timing-function: ease; } |
71166190e add purchase |
200 |
|
323398550 若干功能添加 |
201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 |
.uni-collapse-cell__title { // padding: 12px 12px; font-size: 16px; color: #333333; position: relative; /* #ifndef APP-NVUE */ display: flex; width: 100%; box-sizing: border-box; /* #endif */ height: 48px; line-height: 24px; flex-direction: row; justify-content: space-between; align-items: center; } .uni-collapse-cell__title-iconText { border: 1px solid #ffffff; height: 50rpx; width: 50rpx; border-radius: 26rpx; // background-color: #47A6F0; font-size: 12px; color: #ffffff; line-height: 50rpx; text-align: center; margin-right: 20rpx; } .uni-collapse-cell__title:active { background-color: #ffffff; } |
71166190e add purchase |
232 |
|
323398550 若干功能添加 |
233 234 235 236 237 238 239 240 241 |
.uni-collapse-cell__title-img { height: $uni-img-size-base; width: $uni-img-size-base; margin-right: 10px; // height: 50rpx; // width: 50rpx; // border-radius: 25rpx; // border-radius: 25rpx; } |
71166190e add purchase |
242 |
|
323398550 若干功能添加 |
243 244 245 246 247 248 |
.uni-collapse-cell__title-arrow { width: 20px; height: 20px; transform: rotate(-90deg); transform-origin: center center; } |
71166190e add purchase |
249 |
|
323398550 若干功能添加 |
250 251 252 |
.uni-collapse-cell__title-arrow-active { transform: rotate(0deg); } |
71166190e add purchase |
253 |
|
323398550 若干功能添加 |
254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 |
.uni-collapse-cell__title-text { flex: 1; font-size: $uni-font-size-base; /* #ifndef APP-NVUE */ white-space: nowrap; color: inherit; /* #endif */ /* #ifdef APP-NVUE */ lines: 1; /* #endif */ overflow: hidden; text-overflow: ellipsis; font-size: 12px; color: #333333; } .uni-collapse-cell__time-text { font-size: 12px; color: #999999; margin-right: 20rpx; } .uni-collapse-cell__content { overflow: hidden; } |
71166190e add purchase |
277 |
|
323398550 若干功能添加 |
278 279 280 281 282 283 |
.uni-collapse-cell__wrapper { /* #ifndef APP-NVUE */ display: flex; /* #endif */ flex-direction: column; } |
71166190e add purchase |
284 |
|
323398550 若干功能添加 |
285 286 287 288 |
.uni-collapse-cell__content--hide { // height: 0px; // line-height: 0px; } |
71166190e add purchase |
289 |
</style> |