zydx-plus 1.35.506 → 1.35.507
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
|
+
<dragPopup2 :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
|
+
</dragPopup2>
|
|
16
|
+
<dragPopup2 :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
|
+
</dragPopup2>
|
|
39
39
|
<teleport to="body">
|
|
40
40
|
<div class="tool-cont" :style="{left: left + 'px', top: top + 'px'}">
|
|
41
41
|
<div class="tool"
|
|
@@ -112,15 +112,14 @@
|
|
|
112
112
|
</template>
|
|
113
113
|
|
|
114
114
|
<script>
|
|
115
|
-
import interact from 'interactjs'
|
|
116
115
|
import Sketchpad from '../../sketchpad/src/sketchpad'
|
|
117
|
-
import
|
|
116
|
+
import dragPopup2 from '../../dragPopup2/src/dragPopup'
|
|
118
117
|
import Mess from '../../tipBox/index'
|
|
119
118
|
|
|
120
119
|
let stayTime = 0
|
|
121
120
|
let timer = null
|
|
122
121
|
export default {
|
|
123
|
-
components: {Sketchpad,
|
|
122
|
+
components: {Sketchpad, dragPopup2},
|
|
124
123
|
data() {
|
|
125
124
|
return {
|
|
126
125
|
width: 940,
|