ZxInput.vue 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159
  1. <template>
  2. <view
  3. :class="[
  4. 'input-item',
  5. isFocus && 'is-focus',
  6. hightlight && 'hightlight'
  7. ]"
  8. :style="{ background }"
  9. >
  10. <input
  11. v-model="inputValue"
  12. :type="isPassword ? localType : 'text'"
  13. :placeholder="placeholder"
  14. placeholder-class="input-placeholder"
  15. @focus="handleFocus"
  16. @blur="handleBlur"
  17. >
  18. <view v-if="showIcon">
  19. <view
  20. v-if="isPassword"
  21. :class="[
  22. 'input-icon',
  23. 'eye-icon', localType === 'text' && 'show'
  24. ]"
  25. @tap="togglePasswordType"
  26. />
  27. <view
  28. v-else
  29. class="input-icon clear-icon"
  30. @tap="clearInput"
  31. />
  32. </view>
  33. </view>
  34. </template>
  35. <script>
  36. export default {
  37. props: {
  38. value: {
  39. type: String,
  40. default: ''
  41. },
  42. inputType: {
  43. type: String,
  44. default: ''
  45. },
  46. placeholder: {
  47. type: String,
  48. default: ''
  49. },
  50. hightlight: {
  51. type: Boolean,
  52. default: false
  53. },
  54. isPassword: {
  55. type: Boolean,
  56. default: false
  57. },
  58. background: {
  59. type: String,
  60. default: '#fff'
  61. }
  62. },
  63. data() {
  64. return {
  65. isFocus: false,
  66. inputValue: this.value,
  67. localType: 'password'
  68. }
  69. },
  70. computed: {
  71. showIcon() {
  72. return this.isFocus && this.inputValue
  73. }
  74. },
  75. watch: {
  76. inputValue(val) {
  77. this.$emit('input', val)
  78. },
  79. type(newVal) {
  80. this.localType = newVal
  81. }
  82. },
  83. methods: {
  84. handleFocus() {
  85. this.isFocus = true
  86. this.$emit('focus')
  87. },
  88. handleBlur() {
  89. this.isFocus = false
  90. this.$emit('blur')
  91. },
  92. clearInput() {
  93. this.inputValue = ''
  94. this.$emit('input', '')
  95. },
  96. togglePasswordType() {
  97. this.localType = this.localType === 'text' ? 'password' : 'text'
  98. }
  99. }
  100. }
  101. </script>
  102. <style lang="scss" scoped>
  103. @import "@/libs/css/layout.scss";
  104. .input-item {
  105. position: relative;
  106. width: 100%;
  107. height: 112rpx;
  108. background: #FFFFFF;
  109. border-radius: 24rpx;
  110. margin-bottom: 32rpx;
  111. padding: 0 74rpx 0 32rpx;
  112. box-sizing: border-box;
  113. border: 4rpx solid transparent;
  114. input {
  115. height: 100%;
  116. font-weight: 500;
  117. font-size: 36rpx;
  118. color: #060809;
  119. }
  120. /deep/ .input-placeholder {
  121. font-size: 32rpx;
  122. color: #BAC1D0;
  123. }
  124. &.is-focus {
  125. border: 4rpx solid #060809;
  126. }
  127. &.hightlight {
  128. border-color: #f85658;
  129. background: rgba(248, 86, 88, .1);
  130. input {
  131. color: #f85658;
  132. }
  133. }
  134. .input-icon {
  135. position: absolute;
  136. width: 40rpx;
  137. height: 40rpx;
  138. top: 36rpx;
  139. right: 32rpx;
  140. z-index: 10;
  141. pad: 30rpx;
  142. }
  143. .clear-icon {
  144. background: url('https://qiniu.bms16.com/FhKzwftEPo70kloqIVxKH7g0pD6I');
  145. background-size: 100%;
  146. }
  147. .eye-icon {
  148. background: url('https://qiniu.bms16.com/FhGVSXLjP7rcS1eC-I2cD3eIXB6V');
  149. background-size: 100%;
  150. &.show {
  151. background: url('https://qiniu.bms16.com/FmYDP5QlyBeKER3jqrH12rfZrBRc');
  152. background-size: 100%;
  153. }
  154. }
  155. }
  156. </style>