123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143 |
- <template>
- <view>
- <u-navbar title="检验消息" ></u-navbar>
-
- <view class="main">
- <view class="item" v-for="item in 2" :key="item" >
- <view class="date">
- 2023-01-02 12:00
- </view>
- <view class="message-infos">
- <view class="title">
- 待检验提醒
- </view>
- <view class="infos">
- <view class="info-name">
- 检验类型:
- </view>
- <view class="info-content">
- 设备检验
-
- </view>
- </view>
- <view class="infos">
- <view class="info-name">
- 检验设备:
- </view>
- <view class="info-content">
- 线缆检测设备
-
- </view>
- </view>
- <view class="infos">
- <view class="info-name">
- 检验人:
- </view>
- <view class="info-content ">
- 孙斌
-
- </view>
- </view>
- <view class="infos">
- <view class="info-name">
- 检验日期:
- </view>
- <view class="info-content">
- 2023/03/15-2023/03/20
- </view>
- </view>
- </view>
- </view>
-
-
-
-
- <u-divider bg-color="#f2f2f2">没有更多数据了</u-divider>
-
- </view>
-
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
-
- }
- },
- methods: {
-
- }
- }
- </script>
- <style lang="scss" scoped>
- page{
- padding-bottom: 60px;
- }
- .main{
- padding: 32rpx;
- .item{
- margin-bottom: 48rpx;
- .date{
- margin:0 auto 32rpx;
- width: 39.3%;
- height: 56rpx;
- line-height: 56rpx;
- border-radius: 50px;
- background-color: #c3c5c5;
- color: rgba(255, 255, 255, 1);
- font-size: 24rpx;
- text-align: center;
- }
- .message-infos{
- padding: 40rpx ;
- border-radius: 12px;
- background-color: rgba(255, 255, 255, 1);
- color: rgba(16, 16, 16, 1);
- font-size: 28rpx;
- border: 1px solid rgba(232, 232, 232, 1);
- .title{
- color: rgba(51, 51, 51, 1);
- font-size: 36rpx;
- font-weight: bold;
- margin-bottom: 32rpx;
- }
- .details{
- color: #777777;
- margin-bottom: 24rpx;
- line-height: 40rpx;
- }
- .infos{
- display: flex;
- margin-bottom: 16rpx;
- .info-name{
- color: rgba(136, 136, 136, 1);
-
- width: 150rpx;
- font-size: 28rpx;
- margin-right: 32rpx;
-
- }
- .info-content{
- flex: 1;
- colot:#101010;
-
- }
- .location{
- color: #101010;
- font-weight: bold;
- }
- .temperature{
- color: #43c9d3;
- }
- }
-
- }
- }
- }
-
-
- </style>
|