zydx-plus 1.35.507 → 1.35.5066
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,5 +1,5 @@
|
|
|
1
1
|
<template>
|
|
2
|
-
<
|
|
2
|
+
<dragPopup :z-index="10002" title="手写记录" @updateDrag="updateDragInit" :width="width" :height="height" :minWidth="740" :minHeight="487" @close="cancel" :minimizeCir="false" :dragTextShow="false">
|
|
3
3
|
<template #content>
|
|
4
4
|
<div class="paint" :id="ids">
|
|
5
5
|
<div class="paint-title"></div>
|
|
@@ -12,8 +12,8 @@
|
|
|
12
12
|
</div>
|
|
13
13
|
</div>
|
|
14
14
|
</template>
|
|
15
|
-
</
|
|
16
|
-
<
|
|
15
|
+
</dragPopup>
|
|
16
|
+
<dragPopup :z-index="10003" :width="600" :height="417" v-if="show" :dragStatus="false" :minimizeCir="false" :enlargeShow="false" @close="close">
|
|
17
17
|
<template #content>
|
|
18
18
|
<div class="can">
|
|
19
19
|
<div class="can-cont" :id="ids + 'cont'">
|
|
@@ -35,7 +35,7 @@
|
|
|
35
35
|
</div>
|
|
36
36
|
</div>
|
|
37
37
|
</template>
|
|
38
|
-
</
|
|
38
|
+
</dragPopup>
|
|
39
39
|
<teleport to="body">
|
|
40
40
|
<div class="tool-cont" :style="{left: left + 'px', top: top + 'px'}">
|
|
41
41
|
<div class="tool"
|
|
@@ -112,14 +112,15 @@
|
|
|
112
112
|
</template>
|
|
113
113
|
|
|
114
114
|
<script>
|
|
115
|
+
import interact from 'interactjs'
|
|
115
116
|
import Sketchpad from '../../sketchpad/src/sketchpad'
|
|
116
|
-
import
|
|
117
|
+
import dragPopup from '../../dragPopup/src/dragPopup'
|
|
117
118
|
import Mess from '../../tipBox/index'
|
|
118
119
|
|
|
119
120
|
let stayTime = 0
|
|
120
121
|
let timer = null
|
|
121
122
|
export default {
|
|
122
|
-
components: {Sketchpad,
|
|
123
|
+
components: {Sketchpad, dragPopup},
|
|
123
124
|
data() {
|
|
124
125
|
return {
|
|
125
126
|
width: 940,
|