123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206 |
- <template>
- <view class="gg-container">
- <view class="gg-tit">
- <view class="gg-title">
- <image :src="loadImgSrc('logo-gg.png')" style="width: 100rpx; height: 71rpx;"></image>
- 长春市贞达市政施工管理平台
- </view>
- <image :src="loadImgSrc('gg-bg.png')" style="width: 100%; position:absolute;height: 40vh;" />
- <view class="gg-body">
- <view class="gg-body-tt">
- <image :src="loadImgSrc('gg-lb.png')" style="width: 60rpx; height: 60rpx;margin-right: 10rpx;">
- </image>
- <view>公告</view>
- </view>
- <yxp-txt-scroll :text="content" fontSize="30" duration="5000" delay="500" txtPadding="10"
- style=" margin: auto; width: 80%;" @onClick="goDetails"></yxp-txt-scroll>
- <view
- style=" text-align: right;width: 70px;color: #fff; display: flex; justify-content: end;align-items: center;"
- @click="more()">
- 更多
- <image :src="loadImgSrc('icon_right.png')" style="width: 15px;height: 15px;" mode="widthFix" />
- </view>
- </view>
- </view>
- <view class="notice" v-for="(item,index) in list" :key="index" v-if="index==0">
- <view class="justify-content">
- <view class="font-forty" style="font-size: 42rpx; font-weight: bold;">
- {{item.noticeTitle}}
- </view>
- <view class="font-twenty-eight gray" style="display: flex; align-items: center; margin-top: 20rpx; color:#777;">
- <image :src="loadImgSrc('time.png')" style="width: 26rpx;height: 26rpx; margin-right: 15rpx;"></image> {{item.createTime}}
- </view>
- </view>
- <view class="font-thirty-two black" style="margin: 30rpx 0;">
- <rich-text :nodes="item.noticeContent"></rich-text>
- </view>
- </view>
- </view>
- </template>
- <script>
- import yxpTxtScroll from '../components/yxp-txt-scroll/yxp-txt-scroll.nvue'
- import {
- getNoticeList,
- } from '@/api/common'
- export default {
- components: {
- yxpTxtScroll
- },
- data() {
- return {
- list: [],
- content: [],
- noticeDetails: {},
- }
- },
- onLoad() {
- this.lists()
- uni.setNavigationBarTitle({
- title: ''
- })
- },
- methods: {
- goDetails(item) {
- uni.navigateTo({
- url: '/pages/notice/noticeDetail?params=' + encodeURIComponent(JSON.stringify(
- item))
- })
- },
- more() {
- uni.navigateTo({
- url: '/pages/notice/noticeList'
- });
- },
- lists() {
- uni.showLoading()
- getNoticeList('3', '1', '').then(res => { //查注意事项
- uni.hideLoading();
- if (res.code == '200') {
- if (res.rows.length > 0) {
- this.list = res.rows
- } else {
- this.$modal.msg('暂无数据')
- }
- } else {
- this.$modal.msg(res.msg)
- }
- })
- getNoticeList('1', '1', '').then(res => { //通知公告
- if (res.code == '200') {
- if (res.rows.length > 0) {
- this.noticeDetails = res.rows[0]
- this.content.push(
- res.rows[0]
- )
- } else {
- this.$modal.msg('暂无数据')
- }
- } else {
- this.$modal.msg(res.msg)
- }
- })
- }
- }
- }
- </script>
- <style scoped lang="scss">
- .gg-container {
- background-color: #fff;
- display: flex;
- flex-direction: column;
- }
- .gg-tit {
- width: 100%;
- position: relative;
- top: 0;
- height: 40vh;
- display: flex;
- justify-content: center;
- align-items: center;
- }
- .gg-body {
- display: flex;
- position: absolute;
- bottom: 25rpx;
- width: 728rpx;
- height: 80rpx;
- background: linear-gradient(0deg, #90BDFF, #3F93FD, #20B9D5);
- border-radius: 40rpx;
- justify-content: center;
- align-items: center;
- .gg-body-tt {
- text-align: left;
- margin-left: 5px;
- width: 25%;
- display: flex;
- align-items: center;
- color: #FFFFFF;
- font-weight: bold;
- font-size: 30rpx;
- }
- }
- .content {
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: center;
- }
- .background {
- border: 15px solid hsla(0, 0%, 100%, .5);
- background: white;
- background-clip: padding-box;
- /*从padding开始往外面裁剪背景*/
- }
- .container {
- display: flex;
- margin-left: 10px;
- margin-top: 10px;
- margin-right: 10px;
- align-items: flex-start;
- justify-content: space-between;
- }
- .gg-title {
- width: 100%;
- position: absolute;
- z-index: 1;
- display: flex;
- justify-content: center;
- align-items: center;
- font-size: 40rpx;
- font-weight: bold;
- color: #FFFFFF;
- }
- .notice {
- margin: 20rpx;
- padding: 20rpx;
- background: #FFFFFF;
- box-shadow: 0rpx 8rpx 17rpx 0rpx rgba(0, 0, 0, 0.04);
- border-radius: 10rpx;
- }
- .text {
- border-left: 15rpx solid #3857F3;
- padding-left: 20rpx;
- }
- </style>
|