zydx-plus 1.32.233 → 1.32.235

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": "zydx-plus",
3
- "version": "1.32.233",
3
+ "version": "1.32.235",
4
4
  "description": "Vue.js",
5
5
  "main": "src/index.js",
6
6
  "files": [
@@ -345,6 +345,12 @@ export default {
345
345
  this.mindMap.on('node_active', (node, activeNodeList) => {
346
346
  this.activeNodes = activeNodeList
347
347
  })
348
+ this.mindMap.on('data_change', (data) => {
349
+ this.$emit('dataChange', {
350
+ data: data,
351
+ url: ''
352
+ })
353
+ })
348
354
  },
349
355
  scribes() {
350
356
  this.scribeAct = !this.scribeAct
@@ -3,9 +3,12 @@
3
3
  }
4
4
  .page-cont{
5
5
  width: 100%;
6
- margin: 0 auto;
6
+ margin: 0 auto 20px auto;
7
7
  position: relative;
8
8
  }
9
+ .page-cont:last-child {
10
+ margin-bottom: 0;
11
+ }
9
12
  .page-cont-html{
10
13
  width: 100%;
11
14
  height: 1123px;
@@ -13,7 +16,6 @@
13
16
  box-sizing: border-box;
14
17
  position: relative;
15
18
  border: 1px solid rgb(204, 204, 204);
16
- margin-bottom: 20px;
17
19
  }
18
20
  .page-cont-num{
19
21
  position: absolute;
package/src/index.js CHANGED
@@ -79,7 +79,7 @@ function install(app) {
79
79
  }
80
80
 
81
81
  export default {
82
- version: '1.32.233',
82
+ version: '1.32.235',
83
83
  install,
84
84
  Calendar,
85
85
  Message,