123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145 |
- <template>
- <view>
- <u-navbar :border-bottom="false" :is-back="true" title="通知公告"></u-navbar>
- <view class="wrap">
- <scroll-view scroll-y style="height: 100%;width: 100%;">
- <view class="page-box">
- <view v-for="(item, index) in dataList" :key="item.id" class="tabSwiper" @click="clickContent(item)">
- <view class="top">
- <view class="left">
- <u-icon :size="35" color="#2979ff" name="bell"></u-icon>
- <view class="title">{{ item.title }}</view>
- <u-icon :size="26" color="rgb(203,203,203)" name="arrow-right"></u-icon>
- </view>
- <view class="right">{{ item.date }}</view>
- </view>
- <view class="item">
- <view class="content">
- <view class="title u-line-2">{{ item.content }}</view>
- </view>
- </view>
- </view>
- </view>
- </scroll-view>
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- pageNum: 1,
- pageSize: 50,
- dataList: [],
- };
- },
- onLoad() {
- this.getNoticecList();
- },
- methods: {
- clickContent(item) {
- if (item.id) {
- this.$u.route('/pages/content/content', {
- id: item.id
- });
- }
- },
- getNoticecList() {
- let url = "/api/notice/findNoticeList";
- this.$u.get(url, {
- pageNum: this.pageNum,
- pageSize: this.pageSize,
- orderByColumn: 'create_time',
- isAsc: 'desc'
- }).then(obj => {
- let data = obj.rows
- data.filter(item => {
- this.dataList.push(
- {
- id: item.noticeId,
- title: item.noticeTitle,
- date: item.createTime,
- content: item.remark,
- }
- )
- })
- });
- }
- }
- };
- </script>
- <style lang="scss" scoped>
- .tabSwiper {
- width: 710 rpx;
- background-color: #ffffff;
- margin: 20 rpx auto;
- border-radius: 20 rpx;
- box-sizing: border-box;
- padding: 20 rpx;
- font-size: 28 rpx;
- .top {
- display: flex;
- justify-content: space-between;
- .left {
- display: flex;
- align-items: center;
- .title {
- margin: 0 10 rpx;
- font-size: 32 rpx;
- font-weight: bold;
- }
- }
- .right {
- color: $u-tips-color;
- }
- }
- .item {
- display: flex;
- margin: 20 rpx 0 0;
- .left {
- margin-right: 20 rpx;
- image {
- width: 200 rpx;
- height: 200 rpx;
- border-radius: 10 rpx;
- }
- }
- .content {
- .title {
- font-size: 28 rpx;
- line-height: 50 rpx;
- }
- }
- .right {
- margin-left: 10 rpx;
- padding-top: 20 rpx;
- text-align: right;
- }
- }
- }
- .wrap {
- display: flex;
- flex-direction: column;
- height: calc(100vh - var(--window-top));
- width: 100%;
- }
- .swiper-box {
- flex: 1;
- }
- .swiper-item {
- height: 100%;
- }
- </style>
|