doway-coms 1.3.9 → 1.4.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "doway-coms",
3
- "version": "1.3.9",
3
+ "version": "1.4.0",
4
4
  "description": "doway组件库",
5
5
  "author": "dowaysoft",
6
6
  "main": "packages/index.js",
@@ -1,31 +1,33 @@
1
1
  <template>
2
- <vxe-modal
3
- append-to-body
4
- :maskClosable="false"
5
- :keyboard="false"
6
- resize
7
- width="85%"
8
- height="85%"
9
- v-model="isShow"
10
- destroy-on-close
11
- show-zoom
12
- :closable="true"
13
- title="打印预览"
14
- wrap-class-name="full-modal"
15
- @cancel="closeModal"
16
- >
17
- <iframe
18
- name="printFrame"
19
- id="printFrame"
20
- ref="printFrame"
21
- style="height: 98%"
22
- frameborder="0"
23
- width="100%"
24
- height="300px"
25
- :src="url"
2
+ <!-- show-zoom -->
3
+ <div style="margin:130px 0 0 130px">
4
+ <vxe-modal
5
+ append-to-body
6
+ :maskClosable="false"
7
+ :keyboard="false"
8
+ resize
9
+ width="80%"
10
+ height="80%"
11
+ v-model="isShow"
12
+ destroy-on-close
13
+ :closable="true"
14
+ title="打印预览"
15
+ wrap-class-name="full-modal"
16
+ @cancel="closeModal"
26
17
  >
27
- </iframe>
28
- </vxe-modal>
18
+ <iframe
19
+ name="printFrame"
20
+ id="printFrame"
21
+ ref="printFrame"
22
+ style="height: 98%"
23
+ frameborder="0"
24
+ width="100%"
25
+ height="300px"
26
+ :src="url"
27
+ >
28
+ </iframe>
29
+ </vxe-modal>
30
+ </div>
29
31
  </template>
30
32
  <script>
31
33
  import {Modal as VxeModal} from 'vxe-table'