@kengic/uni 0.6.3-beta.18 → 0.6.3-beta.19
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.
|
@@ -128,13 +128,21 @@
|
|
|
128
128
|
nextTick().then(() => (isFocusMap.value[key] = true));
|
|
129
129
|
}
|
|
130
130
|
|
|
131
|
-
|
|
131
|
+
/**
|
|
132
|
+
* 工作站的输入框失去焦点.
|
|
133
|
+
*/
|
|
134
|
+
async function onDevcodInputValueBlur() {
|
|
132
135
|
devcodPlaceholderStyle.value = 'color: #333';
|
|
133
|
-
|
|
136
|
+
|
|
137
|
+
await nextTick();
|
|
138
|
+
await findDevmstByInputValue();
|
|
134
139
|
}
|
|
135
140
|
|
|
141
|
+
/**
|
|
142
|
+
* 工作站的输入框聚焦.
|
|
143
|
+
*/
|
|
136
144
|
function onDevcodInputValueFocus() {
|
|
137
|
-
devcodPlaceholderStyle.value = 'color:
|
|
145
|
+
devcodPlaceholderStyle.value = 'color: #999';
|
|
138
146
|
}
|
|
139
147
|
|
|
140
148
|
/**
|