NurseStationApp/App.vue

65 lines
1.1 KiB
Vue
Raw Permalink Normal View History

2022-10-17 11:21:23 +08:00
<script>
2022-10-12 16:54:34 +08:00
export default {
2022-10-24 14:42:03 +08:00
onLaunch: function() {},
2022-11-15 15:36:29 +08:00
onShow: function() {},
2022-10-24 14:42:03 +08:00
onHide: function() {}
2022-10-12 16:54:34 +08:00
}
</script>
2022-10-13 16:02:25 +08:00
<style lang="scss">
2022-10-12 16:54:34 +08:00
/*每个页面公共css */
2022-10-13 16:02:25 +08:00
@import "uview-ui/index.scss";
2022-10-17 11:21:23 +08:00
2022-11-11 14:19:07 +08:00
page {
2022-10-17 11:21:23 +08:00
background-color: #F4F5F7;
2022-11-11 14:19:07 +08:00
}
.app {
2022-10-17 11:21:23 +08:00
width: 100%;
2022-11-11 14:19:07 +08:00
height: 100%;
2022-10-28 15:37:07 +08:00
// position: relative;
2022-10-17 11:21:23 +08:00
color: #000000;
2022-12-01 17:03:02 +08:00
padding: 30rpx 0 150rpx 0;
2022-10-17 11:21:23 +08:00
.cards {
width: 94%;
box-shadow: 0px 0px 30rpx 0px rgba(108, 99, 255, 0.16);
background-color: #fff;
2022-10-31 09:04:45 +08:00
margin: 0 auto;
2022-10-17 11:21:23 +08:00
display: flex;
justify-content: space-evenly;
flex-wrap: wrap;
padding: 40rpx 0 200rpx 0;
border-radius: 25rpx;
.item {
width: 43%;
height: 300rpx;
margin-bottom: 40rpx;
border-radius: 25rpx;
position: relative;
.title {
width: 70%;
text-align: center;
font-size: 46rpx;
color: #FCFCFC;
position: absolute;
top: 58%;
left: 50%;
transform: translateX(-50%);
}
image {
width: 100rpx;
height: 100rpx;
position: absolute;
top: 20%;
left: 50%;
transform: translateX(-50%);
}
}
}
}
2022-10-12 16:54:34 +08:00
</style>