upload.vue 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  1. <template>
  2. <view class="content">
  3. <view class="upload-title">
  4. 请提供相关截图及描述,以便上级审核(最多两张)
  5. </view>
  6. <view class="upload-box">
  7. <view class="upload-img">
  8. <image src="../../static/img/upload.png" mode=""></image>
  9. </view>
  10. <view class="fenge"></view>
  11. <view class="upload-content">
  12. <view class="describe">
  13. <view class="title">
  14. 补充描述
  15. </view>
  16. <textarea class="title1" value="" placeholder="填写描述" maxlength="140" focus="focus" />
  17. </view>
  18. </view>
  19. </view>
  20. <view class="submit">
  21. 提交
  22. </view>
  23. </view>
  24. </template>
  25. <script>
  26. import {
  27. upload
  28. } from '@/api/apply.js'
  29. export default {
  30. data() {
  31. return {
  32. }
  33. },
  34. mrthods: {
  35. }
  36. }
  37. </script>
  38. <style lang="scss">
  39. page {
  40. width: 100%;
  41. padding: 0;
  42. margin: 0;
  43. }
  44. .content {
  45. .upload-title {
  46. padding: 30rpx 30rpx;
  47. font-size: 28rpx;
  48. font-family: PingFang SC;
  49. font-weight: 500;
  50. color: #FFFFFF;
  51. line-height: 28rpx;
  52. }
  53. .upload-box {
  54. width: 100%;
  55. height: 450rpx;
  56. background-color: #15130F;
  57. .upload-img {
  58. margin: 30rpx;
  59. padding-top: 30rpx;
  60. width: 160rpx;
  61. height: 190rpx;
  62. image {
  63. width: 100%;
  64. height: 100%;
  65. }
  66. }
  67. .fenge {
  68. width: 100%;
  69. border: 1rpx solid #F0F0F0;
  70. }
  71. .describe {
  72. display: flex;
  73. margin: 20rpx 30rpx;
  74. .title {
  75. font-size: 28rpx;
  76. font-family: PingFang SC;
  77. font-weight: 500;
  78. color: #FFFFFF;
  79. }
  80. .title1 {
  81. margin-left: 40rpx;
  82. font-size: 26rpx;
  83. font-family: PingFang SC;
  84. font-weight: 500;
  85. color: #999999;
  86. }
  87. }
  88. }
  89. .submit{
  90. margin: 120rpx auto;
  91. text-align: center;
  92. line-height: 80rpx;
  93. width: 560rpx;
  94. height: 80rpx;
  95. background: linear-gradient(-74deg, #CE9C6D, #FFECD6);
  96. border: 1px solid;
  97. border-image: linear-gradient(115deg, #FEEBD5, #FFFFFF, #E1AD7D) 1 1;
  98. box-shadow: 3rpx 4rpx 5rpx 0rpx rgba(151, 118, 74, 0.5);
  99. border-radius: 40rpx;
  100. }
  101. }
  102. </style>