index.wxml 4.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. <view class="page">
  2. <view class="page__hd">
  3. <view class="page__title">Input</view>
  4. <view class="page__desc">文本输入框</view>
  5. </view>
  6. <view class="page__bd">
  7. <wux-cell-group title="Normal Usage">
  8. <wux-cell hover-class="none">
  9. <wux-input placeholder="No label" />
  10. </wux-cell>
  11. <wux-cell hover-class="none">
  12. <wux-input label="WeChat" />
  13. </wux-cell>
  14. <wux-cell hover-class="none">
  15. <wux-input label="QQ" placeholder="Input your QQ" requiredMark />
  16. </wux-cell>
  17. <wux-cell hover-class="none">
  18. <wux-input label="Password" placeholder="Input your password" password visibilityToggle type="number" requiredMark />
  19. </wux-cell>
  20. <wux-cell hover-class="none">
  21. <wux-input label="Super long label text" labelWrap />
  22. </wux-cell>
  23. </wux-cell-group>
  24. <wux-cell-group title="Custom title">
  25. <wux-cell hover-class="none">
  26. <wux-input>WeChat</wux-input>
  27. </wux-cell>
  28. <wux-cell hover-class="none">
  29. <wux-input placeholder="Input your QQ">
  30. <image style="width: 20px; height: 20px; margin-right: 5px" src="http://cdn.skyvow.cn/logo.png" />
  31. </wux-input>
  32. </wux-cell>
  33. </wux-cell-group>
  34. <wux-cell-group title="Show clear">
  35. <wux-cell hover-class="none">
  36. <wux-input clear label="WeChat" />
  37. </wux-cell>
  38. <wux-cell hover-class="none">
  39. <wux-input clear onlyShowClearWhenFocus="{{ false }}" label="QQ" placeholder="Input your QQ" />
  40. </wux-cell>
  41. </wux-cell-group>
  42. <wux-cell-group title="Extra">
  43. <wux-cell hover-class="none">
  44. <wux-input label="Dollar" defaultValue="1024" extra="$" />
  45. </wux-cell>
  46. <wux-cell hover-class="none">
  47. <wux-input label="RMB" defaultValue="1024">
  48. <view slot="footer" style="margin-left: 5px">¥</view>
  49. </wux-input>
  50. </wux-cell>
  51. </wux-cell-group>
  52. <wux-cell-group title="Disabled">
  53. <wux-cell hover-class="none">
  54. <wux-input disabled label="WeChat" />
  55. </wux-cell>
  56. <wux-cell hover-class="none">
  57. <wux-input disabled label="QQ" defaultValue="1024" />
  58. </wux-cell>
  59. </wux-cell-group>
  60. <wux-cell-group title="ReadOnly">
  61. <wux-cell hover-class="none">
  62. <wux-input readOnly label="WeChat" defaultValue="read-only mode" />
  63. </wux-cell>
  64. <wux-cell hover-class="none">
  65. <wux-input readOnly label="QQ" defaultValue="1024" />
  66. </wux-cell>
  67. </wux-cell-group>
  68. <wux-cell-group title="Controlled">
  69. <wux-cell hover-class="none">
  70. <wux-input label="Uncontrolled" defaultValue="1024" />
  71. </wux-cell>
  72. <wux-cell hover-class="none">
  73. <wux-input label="Controlled" value="{{ value }}" controlled type="number" bind:change="onChange" bind:focus="onFocus" bind:blur="onBlur" bind:confirm="onConfirm" bind:clear="onClear" />
  74. </wux-cell>
  75. </wux-cell-group>
  76. <wux-cell-group title="Error">
  77. <wux-cell hover-class="none">
  78. <wux-input label="Tel number" value="{{ value }}" controlled error="{{ error }}" type="number" bind:change="onChange" bind:focus="onFocus" bind:blur="onBlur" bind:confirm="onConfirm" bind:clear="onClear" bind:error="onError" />
  79. </wux-cell>
  80. </wux-cell-group>
  81. <wux-cell-group title="Keyboard accessory" label="tip: 视图最大高度为 200px">
  82. <wux-cell hover-class="none">
  83. <wux-input hold-keyboard="{{ true }}" placeholder="设置 input / textarea 聚焦时键盘上方 cover-view / cover-image 工具栏视图">
  84. <cover-view slot="keyboard-accessory" class="container" style="height: 50px;">
  85. <cover-view style="flex: 1; background: green;">1</cover-view>
  86. <cover-image src="https://images.unsplash.com/photo-1593642632823-8f785ba67e45?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=500&q=60" style="flex: 1; background: red;"></cover-image>
  87. </cover-view>
  88. </wux-input>
  89. </wux-cell>
  90. </wux-cell-group>
  91. </view>
  92. </view>