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