BaseInput.vue 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202
  1. <script setup>
  2. import { ref, computed } from 'vue';
  3. import { NInputNumber } from 'naive-ui';
  4. import { SvgIcon } from '@/components';
  5. const props = defineProps({
  6. placeholder: {
  7. type: String,
  8. default: () => ""
  9. },
  10. size: {
  11. type: String,
  12. default: ''
  13. },
  14. type: {
  15. type: String,
  16. default: 'default'
  17. },
  18. isActive: {
  19. type: Boolean,
  20. default: false
  21. },
  22. unit: {
  23. type: String,
  24. default: ''
  25. },
  26. isNeedFlotBtn: {
  27. type: Boolean,
  28. default: true
  29. },
  30. isCenter: {
  31. type: Boolean,
  32. default: false
  33. },
  34. isCloseIcon: {
  35. type: Boolean,
  36. default: true
  37. },
  38. readonly: {
  39. type: Boolean,
  40. default: false
  41. }
  42. })
  43. const isFocusStatus = ref(false);
  44. const emit = defineEmits(['click:confirm', 'on-input', 'on-blur', 'click:cancel']);
  45. const modelValue = defineModel();
  46. const domClassName = computed(() => {
  47. return [
  48. 'input_wrapper',
  49. {'input_text_center': props.isCenter },
  50. 'input-' + props.type + "_" + props.size,
  51. 'inpit_' + props.size
  52. ]
  53. })
  54. const onFocus = () => {
  55. isFocusStatus.value = true;
  56. }
  57. const onBlur = (ev) => {
  58. isFocusStatus.value = false;
  59. emit('on-blur');
  60. }
  61. const onInput = (value) => {
  62. emit('on-input', value);
  63. modelValue.value = value;
  64. }
  65. const handleInpValue = (event, type) => {
  66. if (type === 'confirm') {
  67. emit('click:confirm', modelValue.value);
  68. }
  69. if (type === 'cancel') {
  70. event.preventDefault();
  71. modelValue.value = null;
  72. emit('click:cancel', null);
  73. }
  74. }
  75. </script>
  76. <template>
  77. <div :class="[domClassName, 'base-input-wrapper']">
  78. <NInputNumber
  79. size="small"
  80. round
  81. style="width: 100%;"
  82. :precision="2"
  83. :max="99999.99"
  84. :min="0"
  85. :placeholder="placeholder"
  86. :show-button="false"
  87. :on-update:value="onInput"
  88. :on-blur="onBlur"
  89. :on-focus="onFocus"
  90. :value="modelValue"
  91. >
  92. <template #suffix>
  93. <div class="unit" v-if="unit">{{ unit }}</div>
  94. </template>
  95. </NInputNumber>
  96. <ul class="inp-flot_group space-x-[4px]" v-show="isFocusStatus && isNeedFlotBtn">
  97. <!-- <li>
  98. <SvgIcon name="control-icon-confirm" size="16" @mousedown="handleInpValue($event, 'confirm')"></SvgIcon>
  99. </li> -->
  100. <!-- <li v-if="isCloseIcon">
  101. <SvgIcon name="control-icon-cancel" size="16" @mousedown="handleInpValue($event, 'cancel')"></SvgIcon>
  102. </li> -->
  103. </ul>
  104. </div>
  105. </template>
  106. <style lang="scss" scoped>
  107. .input_wrapper {
  108. @include flex(x, center, between);
  109. position: relative;
  110. margin-top: 4px;
  111. .inp {
  112. width: 100%;
  113. height: 28px;
  114. padding: 0px 56px 0 10px;
  115. border-radius: 4px 0px 0px 4px;
  116. border: 1px solid #E6EAEE;
  117. background: #fff;
  118. outline: none;
  119. font-size: 12px;
  120. &:focus {
  121. border: 1px solid #2454FF;
  122. }
  123. }
  124. .unit {
  125. flex-shrink: 1;
  126. width: 60px;
  127. height: 28px;
  128. border-radius: 0px 4px 4px 0px;
  129. border: 1px solid #E6EAEE;
  130. border-left: 0;
  131. background: #F0F2F5;
  132. text-align: center;
  133. line-height: 28px;
  134. font-size: 12px;
  135. font-weight: bold;
  136. color: #333;
  137. }
  138. .inp-flot_group {
  139. @include flex(x, center, center);
  140. position: absolute;
  141. right: 66px;
  142. top: 50%;
  143. transform: translateY(-50%);
  144. li {
  145. width: 16px;
  146. height: 16px;
  147. border-radius: 100%;
  148. color: #DFE2E6;
  149. cursor: pointer;
  150. svg,
  151. svg path {
  152. fill: #e0e2e6;
  153. stroke: #e0e2e6;
  154. }
  155. &:hover svg {
  156. fill: #b3c4e3;
  157. stroke: #b3c4e3;
  158. }
  159. }
  160. }
  161. }
  162. </style>
  163. <style lang="scss">
  164. .base-input-wrapper {
  165. .n-input-wrapper {
  166. padding-right: 0px;
  167. border: 1px solid #E6EAEE;
  168. border-radius: 4px;
  169. .n-input__input-el, .n-input__placeholder {
  170. font-size: 12px;
  171. }
  172. }
  173. }
  174. .input_text_center {
  175. .n-input-wrapper {
  176. .n-input__input-el {
  177. padding-right: 10px;
  178. text-align: center;
  179. }
  180. }
  181. }
  182. </style>