普兆健康管家前端代码仓库
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

35 lines
627 B

  1. <template>
  2. <uv-input
  3. :value="value"
  4. @input="$emit('input', $event)"
  5. :placeholder="placeholder"
  6. placeholderStyle="color: #C6C6C6; font-size: 32rpx; font-weight: 400;"
  7. :customStyle="{
  8. backgroundColor: 'transparent',
  9. padding: '0',
  10. boxSizing: 'border-box',
  11. fontSize: '32rpx',
  12. border: 'none',
  13. transform: 'translateX(-4px)'
  14. }"
  15. ></uv-input>
  16. </template>
  17. <script>
  18. export default {
  19. props: {
  20. value: {
  21. default: null
  22. },
  23. placeholder: {
  24. type: String,
  25. default: '请输入'
  26. },
  27. },
  28. data() {
  29. return {
  30. }
  31. },
  32. }
  33. </script>