fxyk-textarea.vue 645 B

12345678910111213141516171819202122232425262728293031323334
  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="请输入......."
  10. placeholder-style="margin-left:265rpx;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. }
  30. </script>
  31. <style>
  32. </style>