详情小程序
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.

66 lines
1.3 KiB

  1. <template>
  2. <view class="content">
  3. <view class="textarea-box">
  4. <textarea class="textarea" placeholder="展现自己,也可说出您的故事~" maxlength="200"></textarea>
  5. <view class="tips-num">0/200</view>
  6. </view>
  7. <view class="tips-content">小提示谈谈你对爱情婚姻的想法简单介绍下自己的生后工作或者你希望中的那个ta最好能让对方更了解你还能快速拉近两人的距离哟</view>
  8. <button class="btn" hover-class="lf-opacity">保存</button>
  9. </view>
  10. </template>
  11. <script>
  12. export default {
  13. data(){
  14. return {
  15. }
  16. },
  17. onLoad(){
  18. },
  19. methods: {
  20. }
  21. }
  22. </script>
  23. <style lang="scss" scoped="scoped">
  24. .content{
  25. padding: 30rpx 32rpx;
  26. width: 750rpx;
  27. height: max-content;
  28. box-sizing: border-box;
  29. .textarea-box{
  30. position: relative;
  31. .tips-num{
  32. position: absolute;
  33. bottom: 30rpx;
  34. right: 30rpx;
  35. font-size: 28rpx;
  36. color: #999999;
  37. }
  38. }
  39. .textarea{
  40. width: 686rpx;
  41. height: 350rpx;
  42. border-radius: 10rpx;
  43. background-color: #F5F5F5;
  44. box-sizing: border-box;
  45. padding: 30rpx;
  46. font-size: 28rpx;
  47. padding-bottom: 80rpx;
  48. }
  49. .tips-content{
  50. font-size: 24rpx;
  51. color: #777777;
  52. margin-top: 45rpx;
  53. }
  54. .btn{
  55. margin-top: 40rpx;
  56. background-color: #E21196;
  57. border-radius: 46rpx;
  58. color: #FFFFFF;
  59. }
  60. }
  61. </style>