You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
591 B
33 lines
591 B
<script> |
|
export default { |
|
onLaunch: function() { |
|
console.log('App Launch') |
|
}, |
|
onShow: function() { |
|
console.log('App Show') |
|
}, |
|
onHide: function() { |
|
console.log('App Hide') |
|
} |
|
} |
|
</script> |
|
|
|
<style lang="scss"> |
|
@import url("/components/gaoyia-parse/parse.css"); |
|
/*每个页面公共css */ |
|
page{ |
|
background: #f4f4f4; |
|
} |
|
.title-icon{ |
|
@include wh(7upx,35upx); |
|
background: linear-gradient(0deg, #697BFF, #94A1FF); |
|
border-radius: 4upx; |
|
} |
|
.pub-cirlce{ |
|
width: 10upx; |
|
height: 10upx; |
|
background: #FFC770; |
|
border-radius: 50%; |
|
margin-right: 20upx; |
|
} |
|
</style>
|
|
|