fxyk-textarea.vue 627 B

123456789101112131415161718192021222324252627282930313233
  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. marginBottom: {
  24. type: String,
  25. default: '398'
  26. }
  27. }
  28. }
  29. </script>
  30. <style>
  31. </style>