| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 | 
							- <template>
 
- 	<view>
 
- 		<view class="msg-list">
 
- 			<!-- <view v-for="(item,index) in 2" class="item">
 
- 				<view class="time">2021-03-02  10:10</view>
 
- 				<view class="info-box">
 
- 					<view class="title">系统消息通知</view>
 
- 					<view class="text">
 
- 						如果您在体检中遇到了任何问题,可以随时通过联系客服向我们反馈。
 
- 					</view>
 
- 				</view>
 
- 			</view> -->
 
- 		</view>
 
- 	</view>
 
- </template>
 
- <script>
 
- 	export default {
 
- 		data() {
 
- 			return {
 
- 				
 
- 			}
 
- 		},
 
- 		onLoad(option) {
 
- 			uni.setNavigationBarTitle({
 
- 				title: option.title
 
- 			})
 
- 		},
 
- 		methods: {
 
- 			
 
- 		}
 
- 	}
 
- </script>
 
- <style lang="scss">
 
- 	.msg-list{
 
- 		padding: 0 20upx;
 
- 		.item{
 
- 			padding-top: 60upx;
 
- 			.time{
 
- 				font-size: 24upx;
 
- 				font-family: PingFang SC;
 
- 				font-weight: 500;
 
- 				color: #999999;
 
- 				line-height: 1;
 
- 				text-align: center;
 
- 			}
 
- 			.info-box{
 
- 				background: #FFFFFF;
 
- 				border-radius: 16upx;
 
- 				margin-top: 30upx;
 
- 				padding: 40upx 30upx;
 
- 				.title{
 
- 					font-size: 32upx;
 
- 					font-family: PingFang SC;
 
- 					font-weight: bold;
 
- 					color: #111111;
 
- 					line-height: 1;
 
- 				}
 
- 				.text{
 
- 					font-size: 28upx;
 
- 					font-family: PingFang SC;
 
- 					font-weight: 500;
 
- 					color: #333333;
 
- 					line-height: 42upx;
 
- 					text-align: left;
 
- 					margin-top: 22upx;
 
- 				}
 
- 			}
 
- 		}
 
- 	}
 
- </style>
 
 
  |