123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140 |
- <template>
- <div class="cube-page" :class="type">
- <header class="header">
- <h1>{{title}}</h1>
- <i @click="back" class="cubeic-back"></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 type="text/ecmascript-6">
- export default {
- props: {
- title: {
- type: String,
- default: '',
- required: true
- },
- type: {
- type: String,
- default: ''
- },
- desc: {
- type: String,
- default: ''
- },
- content: {
- type: String,
- default: ''
- }
- },
- methods: {
- back() {
- this.$router.back()
- }
- }
- }
- </script>
- <style lang="stylus" rel="stylesheet/stylus">
- @import "~@/common/stylus/variable.styl"
- .cube-page
- position: absolute
- z-index: 10
- top: 0
- left: 0
- width: 100%
- height: 100%
- background: #efeff4
- .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: 0 15px
- color: #fc9153
- >.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>
|