NurseStationPersonApp/App.vue

24 lines
337 B
Vue
Raw Normal View History

2022-11-03 18:16:30 +08:00
<script>
export default {
onLaunch: function() {},
2022-11-15 15:28:38 +08:00
onShow: function() {},
2022-11-03 18:16:30 +08:00
onHide: function() {}
}
</script>
<style lang="scss">
/*每个页面公共css */
@import "uview-ui/index.scss";
2023-04-13 16:02:47 +08:00
2022-11-15 16:58:12 +08:00
page {
2022-11-03 18:16:30 +08:00
background-color: #F4F5F7;
2022-11-15 16:58:12 +08:00
}
2023-04-13 16:02:47 +08:00
2022-11-15 16:58:12 +08:00
.app {
2022-11-03 18:16:30 +08:00
width: 100%;
2023-04-13 16:02:47 +08:00
height: 100%;
2022-11-03 18:16:30 +08:00
color: #000000;
2023-04-13 16:02:47 +08:00
padding: 30rpx 0 150rpx 0;
2022-11-03 18:16:30 +08:00
}
</style>