inleft
2022-08-12 0dd41bd8cee430d3a948b89c664cb511c400993c
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
<template>
    <div class="myModal">
        <a-modal v-model="visible" title="视频盒子" :footer="null" :mask="false" :maskClosable="true"
            :bodyStyle="{'overflow':'overlay','maxHeight': '750px'}" :afterClose="afterClose">
            <videoDetail ref="videoDetail"></videoDetail>
        </a-modal>
    </div>
</template>
 
<script>
    import videoDetail from "../mini/box16-videoDetail.vue"
 
    export default {
        components: {
            videoDetail,
        },
        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.showMsg = true;
                    this.errorMsg = "日志id参数缺失";
                } else {
                    this.$nextTick(function() {
                        this.$refs.myComment.updateCommentList(this.articleId);
                    })
                }
            },
        },
        data() {
            return {
                visible: false,
                articleId: "",
            }
        },
        methods: {
            showModal(param) {
                this.visible = true;
                this.$nextTick(function() {
                    this.$refs.videoDetail.showVideo(param)
                })
            },
            handleCancel(e) {
                this.visible = false;
            },
            afterClose() {
                this.$emit("closeMyVideo")
            }
        },
    }
</script>
<style scoped>
 
</style>