123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106 |
- <template>
- <view>
- <u-navbar title="新闻资讯">
- <view class="slot-wrap">
- <u-icon name="search" size="48" color="#777777"></u-icon>
- </view>
- </u-navbar>
-
- <view class="news">
-
- <view class="news-item" v-for="item in 4">
- <view class="content">
- <view class="news-title">
- 李春华带队到岳阳港考察学习
- </view>
- <view class="information">
- <view class="classify">
- 行业资讯
- </view>
- <view class="date">
- 2020-12-30
- </view>
-
- </view>
- </view>
-
- <view class="img">
- <img src="../../assets/img/newsPic.png" alt="">
- </view>
-
- </view>
- </view>
- <u-divider border-color="#CFD2D5">已经到底了</u-divider>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
-
- }
- },
- methods: {
-
- }
- }
- </script>
- <style lang="scss" scoped>
- page{
- background-color: #ffffff;
- font-family: 'Regular';
- }
- /deep/.u-slot-content {
- display: block;
- text-align: right !important;
- margin-right: 16px;
- color: #333333;
- }
- .news{
- padding: 40rpx 32rpx;
- .news-item{
- display: flex;
- justify-content: space-between;
- margin-bottom: 40rpx;
- .content{
- display: flex;
- flex-direction: column;
- justify-content: space-between;
- .news-title{
- color: rgba(51, 51, 51, 1);
- font-size: 16px;
- text-align: justify;
- width: 438rpx;
- white-space: nowrap;
- overflow: hidden;
- text-overflow: ellipsis;
- }
-
- .information{
- margin-top: 44rpx;
- display: flex;
- justify-content: space-between;
- color: #777777;
- }
- }
- }
- .img{
- width: 224rpx;
- border-radius: 5px;
- overflow: hidden;
- img{
- width: 100%;
- height: 100%;
- }
- }
- }
- /deep/.u-divider{
- background-color: #ffffff !important;
- color: rgba(182, 189, 195, 1);
- font-size: 12px;
- font-weight: bold;
- }
- </style>
|