cube-page.vue
3.4 KB
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
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
<template>
<div class="cube-page" :class="type">
<header class="header">
<h1>{{title}}</h1>
<i @click="back" class="cubeic-back"><van-icon size='20px' name="arrow-left" /></i>
</header>
<div class="wrapper">
<section v-show="desc" class="desc"><slot name="desc">{{desc}}</slot></section>
<main class="content">
<slot name="content">{{content}}</slot>
</main>
</div>
</div>
</template>
<script>
export default {
props: {
title: {
type: String,
default: '',
required: true
},
type: {
type: String,
default: ''
},
desc: {
type: String,
default: ''
},
content: {
type: String,
default: ''
}
},
methods: {
back() {
window.history.length > 1
? this.$router.back()
: this.$router.push('/')
},
}
}
</script>
<style scoped>
h1{
margin: 0
}
</style>
<style lang="stylus" rel="stylesheet/stylus">
.cube-page
position: absolute
z-index: 10
top: 0
left: 0
width: 100%
height: 100%
background-color: #fafafa;
.header
position: relative
height: 44px
line-height: 44px
text-align: center
background-color: #edf0f4
box-shadow: 0 1px 6px #ccc
-webkit-backface-visibility: hidden
backface-visibility: hidden
z-index: 5
h1
font-size: 16px
font-weight: 700
.cubeic-back
position: absolute
top: 0
left: 0
padding: 5px 15px
color: #6d189e
>.wrapper
height: calc(100% - 44px)
overflow-x: hidden
overflow-y: auto
// -webkit-overflow-scrolling: touch
.desc
padding: 10px
margin: 10px 0
line-height: 20px
font-size: 14px
.content
margin: 10px
&.option-demo
.wrapper
background-color: $color-white
.title
font-size: $fontsize-large
font-weight: 500
color: $color-dark-grey
padding: 15px
border-bottom: 1px solid rgba(0, 0, 0, .1)
margin-bottom: 15px
.options
margin-bottom: 15px
.option-list
.group
margin-bottom: 15px
border: 1px solid rgba(0, 0, 0, .1)
border-radius: $radius-size-medium
.item
height: 52px
border-bottom: 1px solid rgba(0, 0, 0, .1)
&.sub
font-size: $fontsize-medium
background-color: $color-light-grey-opacity
&.first
box-shadow: 0 1px 1px 1px #eee inset
&.last
border-bottom: none
.demo
margin-bottom: 15px
.methods
.method-list
.group
margin-bottom: 15px
border: 1px solid rgba(0, 0, 0, .1)
border-radius: $radius-size-medium
.item
button
height: 40px
font-size: $fontsize-large
.item
background-color: $color-active-light-gray
border-bottom: 1px solid rgba(0, 0, 0, .1)
button
width: 100%
border-bottom-left-radius: $radius-size-medium
border-bottom-right-radius: $radius-size-medium
background-color: $color-orange
box-shadow: 0 0 0 1px $color-orange
border: none
outline: none
color: $color-white
</style>