@kengic/uni 0.6.3-beta.16 → 0.6.3-beta.17
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.
|
@@ -3,11 +3,12 @@
|
|
|
3
3
|
<UniPopupDialog :before-close="true" title="选择工作站" @close="onClose" @confirm="onOk">
|
|
4
4
|
<div class="row">
|
|
5
5
|
<div class="label">工作站:</div>
|
|
6
|
-
<div class="value">
|
|
6
|
+
<div class="value devcod">
|
|
7
7
|
<UniEasyinput
|
|
8
8
|
v-model="devcodInputValue"
|
|
9
9
|
:focus="isFocusMap.devcodInputValue"
|
|
10
10
|
:placeholder="currentDevcodDsc"
|
|
11
|
+
placeholder-style="color: #333"
|
|
11
12
|
trim
|
|
12
13
|
@blur="findDevmstByInputValue"
|
|
13
14
|
@confirm="findDevmstByInputValue"
|
|
@@ -198,7 +199,7 @@
|
|
|
198
199
|
</script>
|
|
199
200
|
|
|
200
201
|
<style scoped>
|
|
201
|
-
:deep(.uni-popup__wrapper
|
|
202
|
+
:deep(.uni-popup__wrapper) {
|
|
202
203
|
width: calc(100% - 8px);
|
|
203
204
|
}
|
|
204
205
|
|
|
@@ -243,4 +244,21 @@
|
|
|
243
244
|
flex: 1;
|
|
244
245
|
min-width: 0;
|
|
245
246
|
}
|
|
247
|
+
|
|
248
|
+
:deep(.uni-popup-dialog) .uni-dialog-content > .row > .value.devcod {
|
|
249
|
+
position: relative;
|
|
250
|
+
}
|
|
251
|
+
|
|
252
|
+
:deep(.uni-popup-dialog) .uni-dialog-content > .row > .value.devcod :deep(.uni-easyinput) {
|
|
253
|
+
color: rgb(51, 51, 51);
|
|
254
|
+
position: absolute;
|
|
255
|
+
left: 0;
|
|
256
|
+
top: 0;
|
|
257
|
+
z-index: 2;
|
|
258
|
+
width: calc(100% - 26px);
|
|
259
|
+
}
|
|
260
|
+
|
|
261
|
+
:deep(.uni-popup-dialog) .uni-dialog-content > .row > .value.devcod :deep(.uni-easyinput) > .uni-easyinput__content {
|
|
262
|
+
border-radius: 3px 0 0 3px;
|
|
263
|
+
}
|
|
246
264
|
</style>
|