ip_input.vue 6.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188
  1. <template>
  2. <ul class="ipAdress">
  3. <template v-for="(item,index) in ipAdress">
  4. <li class="saga-border bg-write" :key="index">
  5. <input type="text" @input="checkIpVal(item,index)" @keyup="turnIpPOS(item,index,$event)" v-model="item.value" ref="ipInput" @blur="setDefaultVal(item)">
  6. </li>
  7. <span v-if="!!value && index == 3" :key="index">:</span>
  8. <li v-if="!!value && index == 3" class="saga-border bg-write" :key="index">
  9. <input type="text" @input="checkIpVal(value[0],4)" @keyup="turnIpPOS(value[0],4,$event)" v-model="value[0].value" ref="ipInput" @blur="setDefaultVal(value)">
  10. </li>
  11. </template>
  12. </ul>
  13. </template>
  14. <script>
  15. export default {
  16. name: "ipInput",
  17. props: {
  18. ip: {
  19. type: [Object, String],
  20. default: ""
  21. },
  22. port: {
  23. type: [Number, String],
  24. default: ""
  25. }
  26. },
  27. data() {
  28. return {
  29. ipAdress: [{
  30. value: ''
  31. }, {
  32. value: ''
  33. }, {
  34. value: ''
  35. }, {
  36. value: ''
  37. }],
  38. value: [{
  39. value: ''
  40. }]
  41. }
  42. },
  43. created() {},
  44. mounted() {},
  45. methods: {
  46. //methods
  47. changeData() {
  48. if (this.ip == '') {
  49. this.ipAdress = [{
  50. value: ''
  51. }, {
  52. value: ''
  53. }, {
  54. value: ''
  55. }, {
  56. value: ''
  57. }]
  58. } else {
  59. this.ipAdress = this.ip.split(".").map(item => {
  60. return {
  61. value: item
  62. }
  63. })
  64. }
  65. if (this.port == "") {
  66. this.$set(this.value[0], `value`, '')
  67. } else {
  68. this.$set(this.value[0], `value`, this.port)
  69. }
  70. console.log(this.value)
  71. },
  72. checkIpVal(item, index) {
  73. let self = this;
  74. //确保每个值都处于0-255
  75. let val = item.value
  76. console.log(val,item)
  77. //当输入的是空格时,值赋为空
  78. val = val.trim();
  79. val = parseInt(val, 10);
  80. if (isNaN(val)) {
  81. val = ''
  82. } else {
  83. if (index == 4) {
  84. val = val < 0 ? 0 : val;
  85. val = val > 65535 ? 65535 : val;
  86. } else {
  87. val = val < 0 ? 0 : val;
  88. val = val > 255 ? 255 : val;
  89. }
  90. }
  91. if (index != 4) {
  92. item.value = val;
  93. } else {
  94. this.value[0].value = val
  95. }
  96. this.changeEmit()
  97. },
  98. turnIpPOS(item, index, event) {
  99. let self = this;
  100. let e = event || window.event;
  101. //左箭头向左跳转,左一不做任何措施
  102. if (e.keyCode == 37) {
  103. if (index == 0) {} else {
  104. self.$refs.ipInput[index - 1].focus();
  105. }
  106. }
  107. //删除键把当前数据删除完毕后会跳转到前一个input,左一不做任何处理
  108. if (e.keyCode == 8) {
  109. let val = item.value;
  110. if (!!val && val != 0) {
  111. return false
  112. }
  113. if (index == 0) {} else {
  114. self.$refs.ipInput[index - 1].focus();
  115. }
  116. }
  117. //右箭头、回车键、空格键、冒号均向右跳转,右一不做任何措施
  118. if (e.keyCode == 39 || e.keyCode == 13 || e.keyCode == 32 || e.keyCode == 190) {
  119. if (index == 4) {} else {
  120. self.$refs.ipInput[index + 1].focus();
  121. }
  122. }
  123. this.changeEmit()
  124. },
  125. setDefaultVal(item) {
  126. //当input失去焦点,而ip没有赋值时,会自动赋值为0
  127. let self = this;
  128. let val = item.value;
  129. if (val == '') {
  130. item.value = '0';
  131. }
  132. this.changeEmit()
  133. },
  134. changeEmit() {
  135. let returnData = this.ipAdress.map(item => {
  136. return item.value
  137. }).join(".")
  138. this.$emit("change", returnData, this.value[0].value)
  139. }
  140. },
  141. watch: {
  142. ip: function() {
  143. this.changeData()
  144. }
  145. }
  146. }
  147. </script>
  148. <style lang="scss" scoped>
  149. .ipAdress {
  150. display: flex;
  151. align-items: center;
  152. width: 100%;
  153. height: 100%;
  154. margin-right: 10px;
  155. width: 280px;
  156. justify-content: space-around;
  157. }
  158. .ipAdress li {
  159. position: relative; // height: 23px;
  160. margin: 2px;
  161. }
  162. ul[class="ipAdress"] input[type="text"] {
  163. border: none;
  164. width: 100%; // height: 23px;
  165. text-align: center;
  166. background: transparent;
  167. }
  168. .bg-write{
  169. background-color: #fff;
  170. }
  171. .ipAdress li div {
  172. position: absolute;
  173. bottom: 2px;
  174. right: 0;
  175. border-radius: 50%;
  176. background: #0190fe;
  177. width: 2px;
  178. height: 2px;
  179. }
  180. /*只需要3个div*/
  181. .ipAdress li:last-child div {
  182. display: none;
  183. }
  184. /*取消掉默认的input focus状态*/
  185. .ipAdress input:focus {
  186. outline: none;
  187. }
  188. </style>