hookehuyr

fix 短文本输入控件新增边框

...@@ -22,7 +22,6 @@ ...@@ -22,7 +22,6 @@
22 :disabled="item.component_props.disabled" 22 :disabled="item.component_props.disabled"
23 :input-align="item.component_props.align" 23 :input-align="item.component_props.align"
24 clearable 24 clearable
25 - :border="false"
26 /> 25 />
27 </div> 26 </div>
28 </template> 27 </template>
...@@ -44,4 +43,10 @@ const props = defineProps({ ...@@ -44,4 +43,10 @@ const props = defineProps({
44 } 43 }
45 } 44 }
46 } 45 }
46 +
47 +:deep(.van-cell__value) {
48 + border: 1px solid #eaeaea;
49 + border-radius: 0.25rem;
50 + padding: 0.25rem 0.5rem;
51 +}
47 </style> 52 </style>
......