-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathOneDetails.vue
115 lines (106 loc) · 1.8 KB
/
OneDetails.vue
1
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
57
58
59
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
<template>
<div
:class="{
'one-details': true,
expanded
}"
>
<button
class="summary"
@click="toggle"
>
<veui-icon
class="arrow"
name="chevron-right"
/> {{ summary }}
</button>
<div
ref="content"
class="content"
:style="style"
@transitionend="stable = true"
>
<slot/>
</div>
</div>
</template>
<script>
import { Icon } from 'veui'
import 'veui-theme-dls-icons/chevron-right'
export default {
name: 'one-details',
components: {
'veui-icon': Icon
},
props: {
summary: {
type: String,
required: true,
default: '详细信息'
}
},
data () {
return {
expanded: false,
intrinsicHeight: 0,
height: 0,
stable: true
}
},
computed: {
style () {
return this.stable
? this.expanded
? null
: 'height: 0'
: `height: ${this.height}px`
}
},
mounted () {
this.updateHeight()
},
methods: {
toggle () {
this.expanded = !this.expanded
this.stable = false
this.height = this.intrinsicHeight
if (!this.expanded) {
requestAnimationFrame(() => {
requestAnimationFrame(() => {
this.height = 0
})
})
}
},
updateHeight () {
let { content } = this.$refs
this.intrinsicHeight = content.scrollHeight
}
}
}
</script>
<style lang="stylus" scoped>
.one-details
overflow hidden
.summary
border none
background none
padding-left 0
cursor help
outline none
display flex
align-items center
line-height 1em
&:hover
color #333
.content
overflow hidden
transition height 0.3s
.arrow
transition transform 0.3s
margin-right 8px
width 1.2em
height 1.2em
.expanded > .summary > &
transform rotateZ(90deg)
</style>