lock_Maintenance/pages/Message/Scheduling.vue
2024-08-29 15:19:18 +08:00

69 lines
1.4 KiB
Vue

<template>
<view class="bg">
<view class="Scheduling">
<view class="title">
<view class="left">排班通知</view>
<view class="time">2023-08-08</view>
</view>
<view class="text">
排班通知排班通知排班通知排班通知排班通知排班通知排班通知排班通知排班通知排班通知排班通知
</view>
</view>
<view class="Scheduling">
<view class="title">
<view class="left">排班通知</view>
<view class="time">2023-08-08</view>
</view>
<view class="text">
排班通知排班通知排班通知排班通知排班通知排班通知排班通知排班通知排班通知排班通知排班通知
</view>
</view>
</view>
</template>
<script>
</script>
<style lang="scss" scoped>
.bg{
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
z-index: -1;
width: 100%;
height: 100%;
background-color: #F7F8FA;
}
.Scheduling{
margin: 30rpx;
margin-bottom: 20rpx;
margin-left: 20rpx;
border-radius: 30rpx;
background-color: #FFFFFF;
}
.title{
display: flex;
margin: 15rpx;
font-size: 40rpx;
.left{
flex: 1;
margin-top: 30rpx;
margin-bottom: 20rpx;
}
.time{
flex: 1;
text-align: right;
font-size: 26rpx;
margin-right: 20rpx;
margin-top: 30rpx;
}
}
.text{
margin-top: 10rpx;
margin-left: 15rpx;
padding-bottom: 20rpx;
font-size: 20rpx;
}
</style>