inleft
2022-08-10 10572998aa54d61c45df3e334eb01e44a15df729
commit | author | age
146176 1 <template>
I 2     <div class="myModal">
105729 3         <a-modal v-model="visible" title="" :footer="null" :mask="false" :maskClosable="true"
146176 4             :bodyStyle="{'overflow':'overlay','maxHeight': '550px'}">
105729 5             <div>{{this.placement}}</div>
I 6             <videoPlayBox></videoPlayBox>
146176 7         </a-modal>
I 8     </div>
9
10 </template>
11
12 <script>
13     import {
14         history
15     } from '../../api/blogArticleComment.js'
105729 16     import videoPlayBox from "../mini/box15-videoPlayBox.vue"
146176 17     export default {
105729 18         components: {
I 19             videoPlayBox
20         },
146176 21         data() {
I 22             return {
23                 visible: false,
105729 24                 placement: "fbottom"
146176 25             }
I 26         },
27         beforeMount() {},
28         methods: {
105729 29             showModal(param) {
I 30                 this.placement = param.id
146176 31                 this.visible = true;
I 32             },
33             handleCancel(e) {
34                 this.visible = false;
35             },
36
37         },
38     }
39 </script>
40 <style scoped>
41     a {
42         color: black;
43     }
44 </style>