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
| <template>
| <el-dialog
| title="预览"
| :visible.sync="dialogVisible"
| class="dialogStyle"
| v-dialogDrag>
| <div ref="word"></div>
| </el-dialog>
| </template>
|
| <script>
| import {viewD} from '../../../../libs/word'
| export default {
| name: "index",
| data() {
| return {
| dialogVisible: false,
| }
| },
| methods: {
| initWord(data,url) {
| this.dialogVisible = true
| setTimeout(() => {
| viewD(data,url,this.$refs.word)
| },1000)
| }
| }
| }
| </script>
|
| <style lang="scss">
| .dialogStyle{
| .el-dialog{
| width: clamp(860px,47%,960px) !important;
| }
| .docx-wrapper{
| background:#fff!important;
| }
| }
|
| </style>
| <style lang="scss" scoped>
| :v-deep{
|
| }
| </style>
|
|