applyAuthorisation.vue 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145
  1. <template>
  2. <view>
  3. <u-navbar title="填写申请人信息" title-color="#101010">
  4. </u-navbar>
  5. <view class="main">
  6. <view class="item">
  7. <view class="title">
  8. <span>*</span>头像
  9. </view>
  10. <view class="value">
  11. <img src="@/assets/img/PEokWS2Copy1@3x.png" alt="" />
  12. </view>
  13. <view class="icon">
  14. <u-icon name="arrow-right" color="#777777" ></u-icon>
  15. </view>
  16. </view>
  17. <view class="item">
  18. <view class="title">
  19. <span>*</span>姓名
  20. </view>
  21. <view class="value">
  22. <input type="text" placeholder="请填写姓名" />
  23. </view>
  24. </view>
  25. <view class="item">
  26. <view class="title">
  27. <span>*</span>联系电话
  28. </view>
  29. <view class="value">
  30. <input type="text" placeholder="请填写手机号码" />
  31. </view>
  32. </view>
  33. </view>
  34. <!-- 提交 -->
  35. <button class="submit" @click="show=true" >提交</button>
  36. <!-- 提交反馈 -->
  37. <u-modal v-model="show" :show-title="false" :show-cancel-button="true" cancel-text="关闭" :show-confirm-button="false" >
  38. <view class="modal">
  39. <view class="success-icon">
  40. <img src="@/assets/img/md-check_circle vRxbRvD@3x.png" alt="" />
  41. </view>
  42. <view class="success-text">
  43. 授权申请提交成功
  44. </view>
  45. <view class="wait">
  46. 请等待单位能源管理员审核通过
  47. </view>
  48. </view>
  49. </u-modal>
  50. </view>
  51. </template>
  52. <script>
  53. export default {
  54. data() {
  55. return {
  56. show:false
  57. }
  58. },
  59. methods: {
  60. }
  61. }
  62. </script>
  63. <style lang="scss" scoped>
  64. .main{
  65. margin: 24rpx 0;
  66. background-color: #fff;
  67. .item{
  68. padding: 24rpx 32rpx;
  69. display: flex;
  70. align-items: center;
  71. border-bottom: 1px solid rgba(221,221,221,1);
  72. .title{
  73. width: 30%;
  74. color: #777777;
  75. font-size: 32rpx;
  76. span{
  77. color: #EE3138;
  78. }
  79. }
  80. .value{
  81. img{
  82. width: 80rpx;
  83. }
  84. .uni-input-placeholder{
  85. color: rgba(204,204,204,1);;
  86. }
  87. }
  88. .icon{
  89. margin-left: auto;
  90. }
  91. }
  92. .item:last-of-type{
  93. border: none;
  94. }
  95. }
  96. // 提交
  97. .submit{
  98. background-color: rgba(22,119,255,1);
  99. color: rgba(255,255,255,1);
  100. margin: 0 32rpx;
  101. border-radius: 50px;
  102. }
  103. // 提交反馈
  104. .modal{
  105. text-align: center;
  106. .success-icon{
  107. margin-top: 24rpx;
  108. img{
  109. width: 132rpx;
  110. height: 132rpx;
  111. }
  112. }
  113. .success-text{
  114. color: rgba(16,16,16,1);
  115. font-size: 36rpx;
  116. margin-top: 16rpx;
  117. font-weight: bold;
  118. }
  119. .wait{
  120. margin-top: 10rpx;
  121. margin-bottom: 48rpx;
  122. }
  123. }
  124. </style>