2023-09-19 14:58:40 +08:00
|
|
|
<script>
|
|
|
|
|
export default {
|
2023-09-20 10:42:44 +08:00
|
|
|
onLaunch: function() {},
|
|
|
|
|
onShow: function() {},
|
|
|
|
|
onHide: function() {}
|
2023-09-19 14:58:40 +08:00
|
|
|
}
|
|
|
|
|
</script>
|
|
|
|
|
|
2023-09-20 10:42:44 +08:00
|
|
|
<style lang="scss">
|
|
|
|
|
@import "uview-ui/index.scss";
|
|
|
|
|
|
2023-09-19 14:58:40 +08:00
|
|
|
/*每个页面公共css */
|
2023-09-20 10:42:44 +08:00
|
|
|
page {
|
2023-10-12 15:54:10 +08:00
|
|
|
background-color: #F4F5F7;
|
2023-09-20 10:42:44 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.app {
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 100%;
|
2023-09-20 11:30:45 +08:00
|
|
|
text-align: justify;
|
2023-09-20 10:42:44 +08:00
|
|
|
color: #000000;
|
|
|
|
|
}
|
|
|
|
|
</style>
|