23 lines
253 B
Vue
23 lines
253 B
Vue
<script>
|
|
|
|
export default {
|
|
onLaunch: function () {
|
|
|
|
},
|
|
onShow: function () {
|
|
},
|
|
onHide: function () {
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
/*每个页面公共css */
|
|
|
|
@import "style/style.scss";
|
|
|
|
page {
|
|
background-color: #f5f5f5;
|
|
}
|
|
</style>
|