| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
 | | <template> |  |   <nut-input |  |     class="nut-input-text bole-input-text" |  |     type="text" |  |     readonly |  |     alwaysEmbed |  |     v-bind="$attrs" |  |   > |  |     <template #clear> |  |       <slot name="clear"></slot> |  |     </template> |  |     <template #right> |  |       <slot name="right"> |  |         <RectRight :size="12" class="common-choose-input-icon" /> |  |       </slot> |  |     </template> |  |   </nut-input> |  | </template> |  |   |  | <script setup lang="ts"> |  | import { RectRight } from '@nutui/icons-vue-taro'; |  |   |  | defineOptions({ |  |   name: 'ChooseInput', |  | }); |  | </script> |  |   |  | <style lang="scss"> |  | @import '@/styles/common.scss'; |  |   |  | .common-choose-input-icon { |  |   //   width: 13px; |  |   //   height: 23px; |  |   margin-left: 18px; |  |   color: boleGetCssVar('text-color', 'primary'); |  | } |  | </style> | 
 |