jhzh
2024-09-23 e678ec74066a2c5b5b3b404d3344bffbd3cf59bd
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
<template>
    <div class="announceDetail">
        <assets-head :title="$t('公告详情')" />
        <div class="content">
            <div class="font-52 font-700 textColor">{{ title }}</div>
            <p class="mt-20 text-grey font-24">{{ createTimeStr }}</p>
            <div class="mt-32 text-cont textColor" v-html="content"></div>
        </div>
    </div>
</template>
 
<script>
import assetsHead from "@/components/assets-head";
import Axios from '@/API/userCenter'
import { dataTimeEx } from '@/utils/utis'
export default {
    props: {
 
    },
    components: {
        assetsHead
    },
    data() {
        return {
            title: '',
            createTimeStr: '',
            content: ''
        }
    },
    mounted() {
        this.getNews();
    },
    methods: {
        getNews() {
            Axios._getNews({
                id: this.$route.query.id,
                language: this.$i18n.locale,
            }).then(res => {
                this.title = res.data.title;
                this.createTimeStr = dataTimeEx(res.data.startTime)
                this.content = res.data.content
            })
        }
    }
}
</script>
 
<style lang="scss" scoped>
.announceDetail {
    width: 100%;
    box-sizing: border-box;
}
 
.content {
    padding: 40px 32px;
}
 
.title {
    text-decoration: underline;
}
 
.text-cont {
    word-wrap: break-word;
}
</style>