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

83 lines
2.1 KiB

  1. <template>
  2. <view class="content">
  3. <view>
  4. <view class="lf-row-between lf-font-28">
  5. <view class="lf-font-bold lf-color-black required">不完全档案</view>
  6. <view class="lf-color-999">0/300</view>
  7. </view>
  8. <textarea class="textarea" placeholder="请描述一下您的性格观念,工作情况,家庭情况等~"></textarea>
  9. </view>
  10. <view>
  11. <view class="lf-row-between lf-font-28">
  12. <view class="lf-font-bold lf-color-black required">平日里我喜欢</view>
  13. <view class="lf-color-999">0/300</view>
  14. </view>
  15. <textarea class="textarea" placeholder="请描述一下您的兴趣爱好~"></textarea>
  16. </view>
  17. <view>
  18. <view class="lf-row-between lf-font-28">
  19. <view class="lf-font-bold lf-color-black required">我心目中的你</view>
  20. <view class="lf-color-999">0/300</view>
  21. </view>
  22. <textarea class="textarea" placeholder="请描述一下您的择偶观等~"></textarea>
  23. </view>
  24. <view class="lf-font-28 lf-color-primary lf-m-b-60">
  25. <view>*1申请上墙将消耗您3条红线若您未能上墙红线将返还给您</view>
  26. <view>*2VIP会员免费上墙在各自的vip群里艾特@工作人员</view>
  27. <view>*3上墙后您的信息将展示在公众号红娘朋友圈小程序首页等上墙展示时间持续7天</view>
  28. </view>
  29. <button class="button">提交上墙</button>
  30. </view>
  31. </template>
  32. <script>
  33. export default {
  34. data(){
  35. return {
  36. }
  37. },
  38. onLoad(){
  39. },
  40. methods: {
  41. }
  42. }
  43. </script>
  44. <style lang="scss" scoped="scoped">
  45. .lf-m-b-60{
  46. margin-bottom: 60rpx;
  47. }
  48. .content{
  49. padding: 38rpx 32rpx;
  50. }
  51. .required{
  52. padding-left: 10rpx;
  53. position: relative;
  54. &::after{
  55. position: absolute;
  56. content: '*';
  57. left: 0;
  58. color: #E21196;
  59. }
  60. }
  61. .textarea{
  62. width: 686rpx;
  63. height: 200rpx;
  64. background: #F5F5F5;
  65. border-radius: 10rpx;
  66. margin-top: 30rpx;
  67. margin-bottom: 60rpx;
  68. padding: 30rpx;
  69. box-sizing: border-box;
  70. }
  71. .button{
  72. background-color: #E21196;
  73. color: #FFFFFF;
  74. border-radius: 46rpx;
  75. font-size: 32rpx;
  76. }
  77. </style>