@zhangqingcq/vgce 0.1.30 → 0.1.31
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/style.css +1 -1
- package/dist/vgce.js +32 -33
- package/dist/vgce.umd.cjs +3 -3
- package/package.json +1 -1
- package/src/components/svg-editor/connection-panel.vue +1 -0
- package/src/components/svg-editor/handle-panel.vue +0 -1
- package/src/config/vue/component/common-table.ts +16 -16
- package/src/config/vue/echarts/pie-charts.ts +10 -10
- package/src/stores/system/index.ts +0 -2
package/package.json
CHANGED
@@ -67,7 +67,6 @@
|
|
67
67
|
|
68
68
|
const canZoom = computed(() => props.itemInfo.config.can_zoom)
|
69
69
|
const onHandleMouseDown = (type: EScaleInfoType, e: MouseEvent) => {
|
70
|
-
console.log('handMousedown', e)
|
71
70
|
const { clientX, clientY } = e
|
72
71
|
e.stopPropagation()
|
73
72
|
globalStore.intention = EGlobalStoreIntention.Zoom
|
@@ -19,7 +19,7 @@ const t: IConfigItem = {
|
|
19
19
|
val: [
|
20
20
|
{
|
21
21
|
prop: 'date',
|
22
|
-
label: '
|
22
|
+
label: '序号',
|
23
23
|
width: '120px',
|
24
24
|
fixed: false,
|
25
25
|
sortable: false,
|
@@ -27,7 +27,7 @@ const t: IConfigItem = {
|
|
27
27
|
},
|
28
28
|
{
|
29
29
|
prop: 'name',
|
30
|
-
label: '
|
30
|
+
label: '名字',
|
31
31
|
width: '120px',
|
32
32
|
fixed: false,
|
33
33
|
sortable: false,
|
@@ -35,7 +35,7 @@ const t: IConfigItem = {
|
|
35
35
|
},
|
36
36
|
{
|
37
37
|
prop: 'address',
|
38
|
-
label: '
|
38
|
+
label: '年龄',
|
39
39
|
width: '280px',
|
40
40
|
fixed: false,
|
41
41
|
sortable: false,
|
@@ -48,31 +48,31 @@ const t: IConfigItem = {
|
|
48
48
|
type: EConfigItemPropsType.JsonEdit,
|
49
49
|
val: [
|
50
50
|
{
|
51
|
-
date: '
|
52
|
-
name: '
|
53
|
-
address: '
|
51
|
+
date: '1',
|
52
|
+
name: 'Jack',
|
53
|
+
address: '34'
|
54
54
|
},
|
55
55
|
{
|
56
|
-
date: '
|
57
|
-
name: '
|
58
|
-
address: '
|
56
|
+
date: '2',
|
57
|
+
name: 'Marry',
|
58
|
+
address: '18'
|
59
59
|
},
|
60
60
|
{
|
61
|
-
date: '
|
62
|
-
name: '
|
63
|
-
address: '
|
61
|
+
date: '3',
|
62
|
+
name: 'Lee',
|
63
|
+
address: '23'
|
64
64
|
},
|
65
65
|
{
|
66
|
-
date: '
|
67
|
-
name: '
|
68
|
-
address: '
|
66
|
+
date: '4',
|
67
|
+
name: 'Steve',
|
68
|
+
address: '31'
|
69
69
|
}
|
70
70
|
]
|
71
71
|
},
|
72
72
|
width: {
|
73
73
|
title: '宽度',
|
74
74
|
type: EConfigItemPropsType.InputNumber,
|
75
|
-
val:
|
75
|
+
val: 350
|
76
76
|
},
|
77
77
|
height: {
|
78
78
|
title: '高度',
|
@@ -28,24 +28,24 @@ const t: IConfigItem = {
|
|
28
28
|
type: EConfigItemPropsType.JsonEdit,
|
29
29
|
val: [
|
30
30
|
{
|
31
|
-
value:
|
32
|
-
name: '
|
31
|
+
value: 998,
|
32
|
+
name: '20岁以下'
|
33
33
|
},
|
34
34
|
{
|
35
|
-
value:
|
36
|
-
name: '
|
35
|
+
value: 546,
|
36
|
+
name: '20-40岁'
|
37
37
|
},
|
38
38
|
{
|
39
|
-
value:
|
40
|
-
name: '
|
39
|
+
value: 354,
|
40
|
+
name: '40-60岁'
|
41
41
|
},
|
42
42
|
{
|
43
|
-
value:
|
44
|
-
name: '
|
43
|
+
value: 421,
|
44
|
+
name: '60-70岁'
|
45
45
|
},
|
46
46
|
{
|
47
|
-
value:
|
48
|
-
name: '
|
47
|
+
value: 607,
|
48
|
+
name: '70岁以上'
|
49
49
|
}
|
50
50
|
]
|
51
51
|
}
|
@@ -29,7 +29,6 @@ export const useEditPrivateStore = defineStore('edit-private-store', {
|
|
29
29
|
},
|
30
30
|
actions: {
|
31
31
|
topUndoBtnClick() {
|
32
|
-
console.log('撤销')
|
33
32
|
if (this.history_now_index < 1) {
|
34
33
|
return
|
35
34
|
}
|
@@ -40,7 +39,6 @@ export const useEditPrivateStore = defineStore('edit-private-store', {
|
|
40
39
|
global_store.setDoneJson(this.history_doneComponent[this.history_now_index])
|
41
40
|
},
|
42
41
|
topRedoBtnClick() {
|
43
|
-
console.log('重做')
|
44
42
|
if (this.history_now_index + 1 == this.history_doneComponent.length) {
|
45
43
|
return
|
46
44
|
}
|