jhzh
2025-04-03 db12897dc68c68d40c557aa59ad78022e2b30ac2
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
<template>
    <v-page>
        <v-header :title="$t('notice.a0')"></v-header>
        <main class="layout-main p-md">
            <view class="top p-b-sm border-b">
                <view class="title fn-lg fn-center color-light">
                    {{data.title}}
                </view>
                <view class="time fn-sm">
                   {{detail.created_at}}
                </view>
            </view>
            <view class="edit-content m-t-md" v-html="data.content">
             
            </view>
        </main>
    </v-page>
</template>
<script>
import Member from "@/api/member";
export default {
    data(){
        return {
            detail:{},
            data:{},
            query:{}
        }
    },
    computed: {
    },
    methods:{
        readNotifiable(){
            Member.readNotifiable({
                id:this.query.id
            }).then(res=>{
                this.detail= res.data
                this.data = res.data.data
            }).catch(()=>{})
        }
    },
    onLoad($ev){
         this.query = $ev;
        this.readNotifiable()
    }
}
</script>
<style lang="scss">
    
</style>