meixioacomponent 0.1.82 → 0.1.85
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/lib/meixioacomponent.common.js +125 -104
- package/lib/meixioacomponent.umd.js +125 -104
- package/lib/meixioacomponent.umd.min.js +3 -3
- package/package.json +1 -1
- package/packages/components/base/baseDialogTable/dialogTable.vue +13 -2
- package/packages/components/base/baseMoverVerifiBar/baseMoverVerifiBar.vue +12 -4
- package/packages/components/index.js +1 -0
- package/lib/style/tokyo-night-dark.min.css +0 -88
- package/packages/components/style/tokyo-night-dark.min.css +0 -88
package/package.json
CHANGED
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
<oa_pro_tableVue
|
|
12
12
|
ref="table"
|
|
13
13
|
:align="`left`"
|
|
14
|
-
v-model="
|
|
14
|
+
v-model="module"
|
|
15
15
|
:height="dialogHeight"
|
|
16
16
|
:pageProps="pageProps"
|
|
17
17
|
:pageConfig="pageConfig"
|
|
@@ -133,8 +133,19 @@ export default {
|
|
|
133
133
|
};
|
|
134
134
|
},
|
|
135
135
|
},
|
|
136
|
-
},
|
|
137
136
|
|
|
137
|
+
value: {},
|
|
138
|
+
},
|
|
139
|
+
computed: {
|
|
140
|
+
module: {
|
|
141
|
+
set(val) {
|
|
142
|
+
this.$emit("input", val);
|
|
143
|
+
},
|
|
144
|
+
get() {
|
|
145
|
+
return this.$props.value;
|
|
146
|
+
},
|
|
147
|
+
},
|
|
148
|
+
},
|
|
138
149
|
components: {
|
|
139
150
|
oa_pro_tableVue,
|
|
140
151
|
baseButtonHandle,
|
|
@@ -96,6 +96,7 @@ export default {
|
|
|
96
96
|
},
|
|
97
97
|
},
|
|
98
98
|
methods: {
|
|
99
|
+
// 初始化
|
|
99
100
|
init() {
|
|
100
101
|
this.$nextTick(() => {
|
|
101
102
|
this.maxLeft =
|
|
@@ -104,6 +105,7 @@ export default {
|
|
|
104
105
|
this.loading = false;
|
|
105
106
|
this.moveX = 0;
|
|
106
107
|
this.moveLeft = 0;
|
|
108
|
+
this.module = false;
|
|
107
109
|
});
|
|
108
110
|
},
|
|
109
111
|
|
|
@@ -123,9 +125,9 @@ export default {
|
|
|
123
125
|
}
|
|
124
126
|
},
|
|
125
127
|
mouseleave() {
|
|
128
|
+
if (!this.moveStatus) return;
|
|
126
129
|
if (this.moveLeft < this.maxLeft) {
|
|
127
130
|
this.moveStatus = 0;
|
|
128
|
-
this.module = false;
|
|
129
131
|
this.init();
|
|
130
132
|
} else {
|
|
131
133
|
this.setComplate();
|
|
@@ -138,9 +140,15 @@ export default {
|
|
|
138
140
|
|
|
139
141
|
setComplate() {
|
|
140
142
|
this.moveStatus = 2;
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
143
|
+
},
|
|
144
|
+
},
|
|
145
|
+
watch: {
|
|
146
|
+
moveStatus(newVal, oldVal) {
|
|
147
|
+
if (newVal == 2) {
|
|
148
|
+
this.module = true;
|
|
149
|
+
this.moveLeft = this.maxLeft;
|
|
150
|
+
this.$emit("verifiComplate");
|
|
151
|
+
}
|
|
144
152
|
},
|
|
145
153
|
},
|
|
146
154
|
};
|
|
@@ -1,88 +0,0 @@
|
|
|
1
|
-
pre code.hljs {
|
|
2
|
-
display: block;
|
|
3
|
-
overflow-x: auto;
|
|
4
|
-
padding: 1em;
|
|
5
|
-
}
|
|
6
|
-
code.hljs {
|
|
7
|
-
padding: 3px 5px;
|
|
8
|
-
} /*!
|
|
9
|
-
Theme: Tokyo-night-Dark
|
|
10
|
-
origin: https://github.com/enkia/tokyo-night-vscode-theme
|
|
11
|
-
Description: Original highlight.js style
|
|
12
|
-
Author: (c) Henri Vandersleyen <hvandersleyen@gmail.com>
|
|
13
|
-
License: see project LICENSE
|
|
14
|
-
Touched: 2022
|
|
15
|
-
*/
|
|
16
|
-
.hljs-comment,
|
|
17
|
-
.hljs-meta {
|
|
18
|
-
color: #565f89;
|
|
19
|
-
}
|
|
20
|
-
.hljs-deletion,
|
|
21
|
-
.hljs-doctag,
|
|
22
|
-
.hljs-regexp,
|
|
23
|
-
.hljs-selector-attr,
|
|
24
|
-
.hljs-selector-class,
|
|
25
|
-
.hljs-selector-id,
|
|
26
|
-
.hljs-selector-pseudo,
|
|
27
|
-
.hljs-tag,
|
|
28
|
-
.hljs-template-tag,
|
|
29
|
-
.hljs-variable.language_ {
|
|
30
|
-
color: #f7768e;
|
|
31
|
-
}
|
|
32
|
-
.hljs-link,
|
|
33
|
-
.hljs-literal,
|
|
34
|
-
.hljs-number,
|
|
35
|
-
.hljs-params,
|
|
36
|
-
.hljs-template-variable,
|
|
37
|
-
.hljs-type,
|
|
38
|
-
.hljs-variable {
|
|
39
|
-
color: #ff9e64;
|
|
40
|
-
}
|
|
41
|
-
.hljs-attribute,
|
|
42
|
-
.hljs-built_in {
|
|
43
|
-
color: #e0af68;
|
|
44
|
-
}
|
|
45
|
-
.hljs-keyword,
|
|
46
|
-
.hljs-property,
|
|
47
|
-
.hljs-subst,
|
|
48
|
-
.hljs-title,
|
|
49
|
-
.hljs-title.class_,
|
|
50
|
-
.hljs-title.class_.inherited__,
|
|
51
|
-
.hljs-title.function_ {
|
|
52
|
-
color: #7dcfff;
|
|
53
|
-
}
|
|
54
|
-
.hljs-selector-tag {
|
|
55
|
-
color: #73daca;
|
|
56
|
-
}
|
|
57
|
-
.hljs-addition,
|
|
58
|
-
.hljs-bullet,
|
|
59
|
-
.hljs-quote,
|
|
60
|
-
.hljs-string,
|
|
61
|
-
.hljs-symbol {
|
|
62
|
-
color: #9ece6a;
|
|
63
|
-
}
|
|
64
|
-
.hljs-code,
|
|
65
|
-
.hljs-formula,
|
|
66
|
-
.hljs-section {
|
|
67
|
-
color: #7aa2f7;
|
|
68
|
-
}
|
|
69
|
-
.hljs-attr,
|
|
70
|
-
.hljs-char.escape_,
|
|
71
|
-
.hljs-keyword,
|
|
72
|
-
.hljs-name,
|
|
73
|
-
.hljs-operator {
|
|
74
|
-
color: #bb9af7;
|
|
75
|
-
}
|
|
76
|
-
.hljs-punctuation {
|
|
77
|
-
color: #c0caf5;
|
|
78
|
-
}
|
|
79
|
-
.hljs {
|
|
80
|
-
background: #1a1b26;
|
|
81
|
-
color: #9aa5ce;
|
|
82
|
-
}
|
|
83
|
-
.hljs-emphasis {
|
|
84
|
-
font-style: italic;
|
|
85
|
-
}
|
|
86
|
-
.hljs-strong {
|
|
87
|
-
font-weight: 700;
|
|
88
|
-
}
|
|
@@ -1,88 +0,0 @@
|
|
|
1
|
-
pre code.hljs {
|
|
2
|
-
display: block;
|
|
3
|
-
overflow-x: auto;
|
|
4
|
-
padding: 1em;
|
|
5
|
-
}
|
|
6
|
-
code.hljs {
|
|
7
|
-
padding: 3px 5px;
|
|
8
|
-
} /*!
|
|
9
|
-
Theme: Tokyo-night-Dark
|
|
10
|
-
origin: https://github.com/enkia/tokyo-night-vscode-theme
|
|
11
|
-
Description: Original highlight.js style
|
|
12
|
-
Author: (c) Henri Vandersleyen <hvandersleyen@gmail.com>
|
|
13
|
-
License: see project LICENSE
|
|
14
|
-
Touched: 2022
|
|
15
|
-
*/
|
|
16
|
-
.hljs-comment,
|
|
17
|
-
.hljs-meta {
|
|
18
|
-
color: #565f89;
|
|
19
|
-
}
|
|
20
|
-
.hljs-deletion,
|
|
21
|
-
.hljs-doctag,
|
|
22
|
-
.hljs-regexp,
|
|
23
|
-
.hljs-selector-attr,
|
|
24
|
-
.hljs-selector-class,
|
|
25
|
-
.hljs-selector-id,
|
|
26
|
-
.hljs-selector-pseudo,
|
|
27
|
-
.hljs-tag,
|
|
28
|
-
.hljs-template-tag,
|
|
29
|
-
.hljs-variable.language_ {
|
|
30
|
-
color: #f7768e;
|
|
31
|
-
}
|
|
32
|
-
.hljs-link,
|
|
33
|
-
.hljs-literal,
|
|
34
|
-
.hljs-number,
|
|
35
|
-
.hljs-params,
|
|
36
|
-
.hljs-template-variable,
|
|
37
|
-
.hljs-type,
|
|
38
|
-
.hljs-variable {
|
|
39
|
-
color: #ff9e64;
|
|
40
|
-
}
|
|
41
|
-
.hljs-attribute,
|
|
42
|
-
.hljs-built_in {
|
|
43
|
-
color: #e0af68;
|
|
44
|
-
}
|
|
45
|
-
.hljs-keyword,
|
|
46
|
-
.hljs-property,
|
|
47
|
-
.hljs-subst,
|
|
48
|
-
.hljs-title,
|
|
49
|
-
.hljs-title.class_,
|
|
50
|
-
.hljs-title.class_.inherited__,
|
|
51
|
-
.hljs-title.function_ {
|
|
52
|
-
color: #7dcfff;
|
|
53
|
-
}
|
|
54
|
-
.hljs-selector-tag {
|
|
55
|
-
color: #73daca;
|
|
56
|
-
}
|
|
57
|
-
.hljs-addition,
|
|
58
|
-
.hljs-bullet,
|
|
59
|
-
.hljs-quote,
|
|
60
|
-
.hljs-string,
|
|
61
|
-
.hljs-symbol {
|
|
62
|
-
color: #9ece6a;
|
|
63
|
-
}
|
|
64
|
-
.hljs-code,
|
|
65
|
-
.hljs-formula,
|
|
66
|
-
.hljs-section {
|
|
67
|
-
color: #7aa2f7;
|
|
68
|
-
}
|
|
69
|
-
.hljs-attr,
|
|
70
|
-
.hljs-char.escape_,
|
|
71
|
-
.hljs-keyword,
|
|
72
|
-
.hljs-name,
|
|
73
|
-
.hljs-operator {
|
|
74
|
-
color: #bb9af7;
|
|
75
|
-
}
|
|
76
|
-
.hljs-punctuation {
|
|
77
|
-
color: #c0caf5;
|
|
78
|
-
}
|
|
79
|
-
.hljs {
|
|
80
|
-
background: #1a1b26;
|
|
81
|
-
color: #9aa5ce;
|
|
82
|
-
}
|
|
83
|
-
.hljs-emphasis {
|
|
84
|
-
font-style: italic;
|
|
85
|
-
}
|
|
86
|
-
.hljs-strong {
|
|
87
|
-
font-weight: 700;
|
|
88
|
-
}
|