issue.vue 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  1. <template>
  2. <view>
  3. <u-navbar title="发布内容" back-icon-name="close" >
  4. <view class="slot-wrap">
  5. 发布
  6. </view>
  7. </u-navbar>
  8. <textarea placeholder="记录点滴生活..." name="" id="" cols="30" rows="10"></textarea>
  9. <view class="upload">
  10. <u-upload :action="action" :file-list="fileList" ></u-upload>
  11. </view>
  12. <view class="select">
  13. <view class="join">
  14. <text class="sign">#</text>
  15. <text class="text">参与活动</text>
  16. </view>
  17. <view class="choose">
  18. <text>选择活动</text>
  19. <u-icon name="arrow-right"></u-icon>
  20. </view>
  21. </view>
  22. </view>
  23. </template>
  24. <script>
  25. export default {
  26. data() {
  27. return {
  28. }
  29. }
  30. }
  31. </script>
  32. <style scoped lang="scss">
  33. page{
  34. background-color: #fff;
  35. }
  36. /deep/.u-slot-content {
  37. display: block;
  38. text-align: right !important;
  39. margin-right: 16px;
  40. color: #333333;
  41. }
  42. /deep/.uicon-close{
  43. font-size: 32rpx !important;
  44. color: #101010 !important;
  45. }
  46. .slot-wrap{
  47. width: 104rpx;
  48. height:56rpx;
  49. line-height:56rpx ;
  50. border-radius: 8px;
  51. background-color: rgba(204, 204, 204, 1);
  52. color: #fff;
  53. text-align: center;
  54. position: absolute;
  55. top: 50%;
  56. right: 32rpx;
  57. transform: translateY(-50%);
  58. }
  59. uni-textarea{
  60. width: 100%;
  61. text-indent: 28rpx;
  62. padding-top:28rpx;
  63. }
  64. .upload{
  65. padding: 32rpx;
  66. /deep/.u-add-tips{
  67. display: none;
  68. }
  69. }
  70. .select{
  71. display: flex;
  72. justify-content: space-between;
  73. padding: 0 32rpx;
  74. height: 56px;
  75. line-height: 56px;
  76. .join{
  77. color: rgba(16, 16, 16, 1);
  78. font-size: 16px;
  79. .sign{
  80. color: #1F4A99;
  81. margin-right: 8rpx;
  82. }
  83. }
  84. .choose{
  85. text{
  86. margin-right: 8rpx;
  87. }
  88. color: rgba(153, 153, 153, 1);
  89. }
  90. }
  91. </style>