123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107 |
- <template>
- <view>
- <uni-popup ref="popup" :is-mask-click="false">
- <view class="box">
- <view class="content">
- <view class="title">
- <view class="icon">
- <image src="./icon/icon.png" mode="scaleToFill"></image>
- </view>
- <view class="text">{{data.title}}</view>
- </view>
- <scroll-view scroll-y>
- <view class="inner">
- {{data.content}}
- </view>
- </scroll-view>
- </view>
- </view>
- </uni-popup>
- </view>
- </template>
- <script>
- export default {
- name: "openingNotice",
- data() {
- return {
- data: {}
- };
- },
- mounted() {
- this.get_notify_getNotifyOne()
- },
- methods: {
- get_notify_getNotifyOne() {
- this.$api.notify_getNotifyOne({
- }).then((res)=>{
- // console.log(res)
- if(res.data.code == 0 && res.data.data != null){
- this.data = res.data.data
- this.$refs.popup.open('top')
- setTimeout(()=>{
- this.$refs.popup.close()
- },10000)
- }else{
- // console.log("已读")
- }
- })
- }
- }
- }
- </script>
- <style lang="scss">
- .box {
- height: 100vh;
- display: flex;
- align-items: center;
- }
- .content {
- margin: 0 auto;
- width: 700rpx;
- background-color: #FFFFFF;
- border-radius: 20rpx;
- box-sizing: border-box;
- padding: 25rpx;
- .title {
- position: relative;
- height: 90rpx;
- line-height: 90rpx;
- font-size: 38rpx;
- font-weight: 700;
- text-align: center;
- border-bottom: 1rpx solid #E1E5E9;
-
- padding-top: 20rpx;
- .icon {
- position: absolute;
- top: -160rpx;
- left: 0;
- image {
- width: 218rpx;
- height: 193rpx;
- }
- }
- }
- .inner {
- height: 50vh;
- text-indent: 2rem;
-
- box-sizing: border-box;
- padding: 20rpx 0;
- }
- }
- </style>
|