819527061@qq.com
2024-05-11 f73ed7862edc9c3cb78a2610486643a2fa079fde
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
<template>
    <view class="noticeDetail-wrap">
        <!-- <pageNav title="通知" :isHavBack="isHavBack"></pageNav> -->
        <view class="noticeDetail-main">
            <view class="noticeDetail-title">
                <view class="zheng-title">{{title}}</view>
                <view class="fu-title">{{createTime}}</view>
            </view>
            <view class="noticeDetail-content">
                <view class="content" v-html="content">
                </view>
            </view>
        </view>
    </view>
</template>
 
<script>
    export default {
        data() {
            return {
                title:'',
                content:'',
                createTime:''
            }
        },
        onLoad(option) {
            this.createTime = decodeURIComponent(option.createTime)
            this.title = decodeURIComponent(option.title)
            this.content = decodeURIComponent(option.content)
        }
    }
</script>
 
<style lang="scss" scoped>
    .noticeDetail-main{
        width: 100%;
        padding: 32rpx;
        box-sizing: border-box;
    }
    .noticeDetail-title{
        display: flex;
        flex-direction: column;
        padding-bottom: 20rpx;
        border-bottom: 1px dotted #BCBCBC;
        .zheng-title{
            font-size: 36rpx;
            color: #666666;
            font-weight: light;
            text-align: center;
            line-height: 2;
        }
        .fu-title{
            font-size: 28rpx;
            color: #666666;
            font-weight: light;
            text-align: center;
            line-height: 2;
        }
    }
    .noticeDetail-content{
        margin-top: 40rpx;
        text-indent: 2em;
        .content{
            font-size: 32rpx;
            color: #666666;
            font-weight: light;
            line-height: 2;
        }
        
    }
</style>