遇见
5 years ago
5 changed files with 68 additions and 6 deletions
@ -1,2 +1,3 @@
@@ -1,2 +1,3 @@
|
||||
$bgColor = #00bcd4 |
||||
$darkTextColor = #333333 |
||||
$darkTextColor = #333333 |
||||
$headerHeight = .86rem |
@ -0,0 +1,17 @@
@@ -0,0 +1,17 @@
|
||||
<template> |
||||
<city-header></city-header> |
||||
</template> |
||||
|
||||
<script> |
||||
import CityHeader from "./components/header" |
||||
export default { |
||||
name: "City", |
||||
components: { |
||||
CityHeader: CityHeader |
||||
} |
||||
} |
||||
</script> |
||||
|
||||
<style lang="stylus" scoped> |
||||
|
||||
</style> |
@ -0,0 +1,36 @@
@@ -0,0 +1,36 @@
|
||||
<template> |
||||
<div class="header"> |
||||
城市选择 |
||||
<router-link to="/"> |
||||
<div class="iconfont header-back"></div> |
||||
</router-link> |
||||
</div> |
||||
</template> |
||||
|
||||
<script> |
||||
export default { |
||||
name: "CityHeader" |
||||
}; |
||||
</script> |
||||
|
||||
<style lang="stylus" scoped> |
||||
@import '~styles/variable.styl' |
||||
.header |
||||
position relative |
||||
overflow hidden |
||||
height $headerHeight |
||||
line-height $headerHeight |
||||
text-align center |
||||
color #ffffff |
||||
background $bgColor |
||||
font-size .32rem |
||||
.header-back |
||||
position absolute |
||||
top 0 |
||||
left 0 |
||||
width .64rem |
||||
text-align center |
||||
font-size .4rem |
||||
margin-left .1rem |
||||
color #ffffff |
||||
</style> |
Reference in new issue