BaseChooseItem.vue 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219
  1. <script setup>
  2. import { ref, computed, unref } from 'vue';
  3. import { useMessage } from 'naive-ui';
  4. import { BaseNumberInput } from '@/components';
  5. import BaseButton from './BaseButton.vue';
  6. import BaseInput from './BaseInput.vue';
  7. const message = useMessage();
  8. const activeIndex = ref(-1);
  9. const inpVal = ref();
  10. const modelValue = defineModel();
  11. const modelType = defineModel('type');
  12. const modelValue1 = defineModel('value1');
  13. const modelValue2 = defineModel('value2');
  14. const props = defineProps({
  15. title: {
  16. type: String,
  17. default: ''
  18. },
  19. btnGroup: {
  20. type: Array,
  21. default: false
  22. },
  23. unit: {
  24. type: String,
  25. default: ''
  26. },
  27. isDouble: {
  28. type: Boolean,
  29. default: false
  30. }
  31. })
  32. const data = ref(props.btnGroup);
  33. const currentNumValue = computed(() => {
  34. const curIndex = props.btnGroup.length === 1 ? 0 : unref(activeIndex.value);
  35. return curIndex < 0
  36. ? "" : curIndex === 0
  37. ? modelValue.value: props.btnGroup[curIndex].value
  38. });
  39. const onInpCancel = (val) => {
  40. inpVal.value = val;
  41. }
  42. const onInpConfirm = (num) => {
  43. if (num === Infinity || num === -Infinity) {
  44. modelValue.value = null
  45. return message.warning(`${props.title}的数值填写有误, 请检查`);
  46. }
  47. modelValue.value = num;
  48. }
  49. const onInput = (val) => {
  50. modelValue1.value = val;
  51. modelValue2.value = val;
  52. // inpVal.value = val
  53. }
  54. const onBlur = () => {
  55. if (inpVal.value === Infinity || inpVal.value === -Infinity) {
  56. modelValue.value = null;
  57. inpVal.value = null;
  58. return message.warning(`${props.title}的数值填写有误, 请检查`);
  59. }
  60. }
  61. const changeActive = (item, index) => {
  62. modelType.value = index;
  63. modelValue1.value = index != 0 ? item.value1 : modelValue.value;
  64. if (props.isDouble) {
  65. modelValue2.value = index != 0 ? item.value2 : modelValue.value;
  66. }
  67. }
  68. const resetInpVal = () => {
  69. inpVal.value = null;
  70. activeIndex.value = -1;
  71. }
  72. defineExpose({
  73. resetInpVal
  74. })
  75. </script>
  76. <template>
  77. <div class="base-chooseItem_view">
  78. <span class="label-inner">{{ title }}:</span>
  79. <div class="choose-inner">
  80. <div class="top-box">
  81. <ul class="btn-group space-x-[4px]">
  82. <BaseButton
  83. v-for="item, index in btnGroup"
  84. type="info"
  85. :key="index"
  86. :isActive="modelType === index || btnGroup.length === 1"
  87. @click="changeActive(item, index)"
  88. >
  89. {{ item.label }}
  90. </BaseButton>
  91. </ul>
  92. <ul class="flex space-x-[20px] text-center">
  93. <li class="w-[60px]">{{ modelValue1 }}</li>
  94. <li class="w-[60px]" v-if="isDouble">{{ modelValue2 }}</li>
  95. </ul>
  96. </div>
  97. <BaseInput
  98. v-show="(modelType !== undefined && !modelType) || btnGroup.length === 1"
  99. default-value=""
  100. :placeholder="'请输入' + props.title"
  101. :unit="unit"
  102. v-model="modelValue"
  103. @click:confirm="onInpConfirm"
  104. @click:cancel="onInpCancel"
  105. @on-input="onInput"
  106. @on-blur="onBlur"
  107. ></BaseInput>
  108. </div>
  109. </div>
  110. </template>
  111. <style lang="scss">
  112. .base-chooseItem_view {
  113. @include flex(x, start, start);
  114. .label-inner {
  115. width: 160px;
  116. flex-shrink: 1;
  117. line-height: 28px;
  118. }
  119. .choose-inner {
  120. width: 100%;
  121. .top-box {
  122. @include flex(x, center, between);
  123. .btn-group {
  124. @include flex(x, center, center);
  125. }
  126. .unit {
  127. font-family: "D-DIN-PRO-700-Bold";
  128. font-weight: bold;
  129. font-size: 12px;
  130. color: #333;
  131. }
  132. }
  133. .bottom-box {
  134. position: relative;
  135. @include flex(x, center, between);
  136. margin-top: 4px;
  137. .inp {
  138. width: 100%;
  139. height: 28px;
  140. padding: 0px 56px 0 10px;
  141. border-radius: 4px 0px 0px 4px;
  142. border: 1px solid #E6EAEE;
  143. background: #fff;
  144. outline: none;
  145. font-size: 12px;
  146. &:focus {
  147. border: 1px solid #2454FF;
  148. }
  149. }
  150. .unit {
  151. flex-shrink: 1;
  152. width: 46px;
  153. height: 28px;
  154. border-radius: 0px 4px 4px 0px;
  155. border: 1px solid #E6EAEE;
  156. border-left: 0;
  157. background: #F0F2F5;
  158. text-align: center;
  159. line-height: 28px;
  160. font-size: 12px;
  161. font-weight: bold;
  162. }
  163. .inp-flot_group {
  164. position: absolute;
  165. @include flex(x, center, center);
  166. right: 50px;
  167. top: 50%;
  168. transform: translateY(-50%);
  169. li {
  170. width: 16px;
  171. height: 16px;
  172. border-radius: 100%;
  173. color: #DFE2E6;
  174. cursor: pointer;
  175. svg,
  176. svg path {
  177. fill: #e0e2e6;
  178. stroke: #e0e2e6;
  179. }
  180. &:hover svg {
  181. fill: #b3c4e3;
  182. stroke: #b3c4e3;
  183. }
  184. }
  185. }
  186. }
  187. }
  188. }
  189. </style>