fxyk-textarea.vue 734 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. <template>
  2. <u-input style="margin:77rpx 35rpx 0rpx;padding:0;border-radius:0"
  3. :style="{'margin-bottom': marginBottom + 'rpx'}"
  4. height="418.75"
  5. type="textarea"
  6. border
  7. border-color="#C2C2C2"
  8. :custom-style="{'background-color':'#fff'}"
  9. :placeholder="placeholder"
  10. placeholder-style="margin-left:280rpx;margin-top:194rpx"
  11. :isExistIcon="false"
  12. :clearable="false"
  13. v-model="value" />
  14. </template>
  15. <script>
  16. export default {
  17. data() {
  18. return {
  19. value: ''
  20. }
  21. },
  22. props: {
  23. // 下边距
  24. marginBottom: {
  25. type: String,
  26. default: '398'
  27. },
  28. // 提示文字
  29. placeholder: {
  30. type: String,
  31. default: '请输入.......'
  32. }
  33. }
  34. }
  35. </script>
  36. <style>
  37. </style>