inleft
2022-08-11 af029bdfb645bd2b75fbab687c1a5f45b428d801
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
<template>
    <div>
        <div class="boxMain">
            <videoPlayBox ref="videoPlayBox"></videoPlayBox>
        </div>
        <div style="padding: 20px 20px 5px;" class="myShadow">
            <pre>{{introduce}}</pre>
        </div>
        <div class="articleComment">
            <comment ref="myComment" :articleId="articleId" :isAllowedComment="isAllowedComment" :foldReply="true" />
        </div>
    </div>
 
</template>
 
<script>
    import {
        history
    } from '../../api/blogArticleComment.js'
    import videoPlayBox from "../mini/box15-videoPlayBox.vue"
    import comment from "../mini/box12-comment.vue"
 
    import {
        queryBlogArticleDetail
    } from '../../api/blogArticle.js'
 
    export default {
        components: {
            videoPlayBox,
            comment,
        },
        watch: {
            // '$route'(to, from) {
            //     if ("mdDetail" === to.name) {
            //         this.articleId = this.$route.query.id;
            //         this.articleFileType = this.$route.query.articleFileType;
            //     }
            // },
            articleId: function(newValue, oldValue) {
                if (newValue == undefined || newValue == null || newValue == "") {
                    this.errorMsg = "日志id参数缺失";
                } else {
                    this.$nextTick(function() {
                        this.$refs.myComment.updateCommentList(this.articleId);
                    })
                }
            },
        },
        data() {
            return {
                articleId: "",
                lastArticleId: "",
                isAllowedComment: false,
                introduce: "",
                secret: "",
                myLock: false,
                videoData: {
                    img: "http://t.inleft.com/share/media_photo/idea_beijing.jpg",
                    url: "",
                    type: "normal"
                }
            }
        },
        methods: {
            showVideo(item) {
                this.lastArticleId = this.articleId;
                this.articleId = item.id
                this.isAllowedComment = item.isAllowedComment
                this.introduce = item.introduce
                this.loadData()
            },
            loadData() {
 
                if (this.myLock) {
                    this.$message.info("正在努力加载中..", 3)
                    return
                }
 
                let _this = this;
                queryBlogArticleDetail({
                    id: this.articleId,
                    authWord: this.secret == "" ? null : md5(this.secret)
                }).then((res) => {
                    this.myLock = true;
 
                    if (res.code != 200) {
 
                        if (res.code == 1019001) {
                            //日志需要授权
                            this.$message.error(res.message)
                        } else if (res.code == 1019002) {
 
                            this.$message.error(res.message)
                        } else {
                            this.$notification.error({
                                message: '好像哪里不对劲..',
                                description: res.message,
                                placement: 'bottomRight'
                            });
                        }
                        return
                    }
 
                    this.isAllowedComment = res.data.isAllowedComment;
                    this.videoData.url = res.data.articleFileURL;
                    this.videoData.img = res.data.coverFileURL;
                    if (res.data.articleFileURL != null &&
                        res.data.articleFileURL != "" &&
                        res.data.articleFileURL.endsWith("m3u8")) {
                        this.videoData.type = "customHls";
                    } else {
                        this.videoData.type = "normal";
                    }
 
                    this.myLock = false;
                    if (this.lastArticleId != this.articleId) {
                        _this.$refs.videoPlayBox.changePlay(this.videoData)
                    }
                })
 
            }
        },
    }
</script>
<style scoped>
    a {
        color: black;
    }
 
    pre {
        font-family: 'HYTangMeiRen';
        src: url("http://t.inleft.com/share/z%E5%AD%97%E4%BD%93%E5%BA%93/hytmr55%E6%B1%89%E4%BB%AA%E5%94%90%E7%BE%8E%E4%BA%BA%E5%AD%97%E4%BD%93.woff") format("truetype");
    }
 
    .boxMain {
        display: flex;
        justify-content: center;
        padding: 5px 20px;
    }
 
    .myShadow {
 
        box-shadow: 8px 8px 18px rgba(0, 0, 0, 0.1),
            -8px -8px 18px #ffffff;
    }
</style>