123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131 |
- <template>
- <view>
- <view class="notice-item" v-for="(item, index) in noticeData" :key="index">
- <text class="time">{{item.createTime}}</text>
- <view class="content">
- <text class="title">{{ item.noticeTitle }}</text>
- <view class="img-wrapper">
- <image class="pic" src="https://timgsa.baidu.com/timg?image&quality=80&size=b9999_10000&sec=1556465765776&di=57bb5ff70dc4f67dcdb856e5d123c9e7&imgtype=0&src=http%3A%2F%2Fimg.zcool.cn%2Fcommunity%2F01fd015aa4d95fa801206d96069229.jpg%401280w_1l_2o_100sh.jpg"></image>
- <view class="cover">
- 重要通知
- </view>
- </view>
- <text class="introduce">{{ item.noticeContent }}</text>
- <view class="bot b-t">
- <text>查看详情</text>
- <text class="more-icon yticon icon-you"></text>
- </view>
- </view>
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- noticeData: []
- }
- },
- onLoad() {
- this.noticeList()
- },
- methods: {
- noticeList(){
- const that = this
- that.$api.request('get', 'notice/app/list', null, failres => {
- that.$api.msg(failres.msg)
- }).then(res => {
- this.noticeData = res.data;
- })
- }
- }
- }
- </script>
- <style lang='scss'>
- page {
- background-color: #f7f7f7;
- padding-bottom: 30upx;
- }
- .notice-item {
- display: flex;
- flex-direction: column;
- align-items: center;
- }
- .time {
- display: flex;
- align-items: center;
- justify-content: center;
- height: 80upx;
- padding-top: 10upx;
- font-size: 26upx;
- color: #7d7d7d;
- }
- .content {
- width: 710upx;
- padding: 0 24upx;
- background-color: #fff;
- border-radius: 4upx;
- }
- .title {
- display: flex;
- align-items: center;
- height: 90upx;
- font-size: 32upx;
- color: #303133;
- }
- .img-wrapper {
- width: 100%;
- height: 260upx;
- position: relative;
- }
- .pic {
- display: block;
- width: 100%;
- height: 100%;
- border-radius: 6upx;
- }
- .cover {
- display: flex;
- justify-content: center;
- align-items: center;
- position: absolute;
- left: 0;
- top: 0;
- width: 100%;
- height: 100%;
- background-color: rgba(0, 0, 0, .5);
- font-size: 36upx;
- color: #fff;
- }
- .introduce {
- display: inline-block;
- padding: 16upx 0;
- font-size: 28upx;
- color: #606266;
- line-height: 38upx;
- }
- .bot {
- display: flex;
- align-items: center;
- justify-content: space-between;
- height: 80upx;
- font-size: 24upx;
- color: #707070;
- position: relative;
- }
- .more-icon {
- font-size: 32upx;
- }
- </style>
|