addUser.vue 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. <template>
  2. <view class="add-user-view">
  3. <view class="flex-row email-input-view">
  4. <input class="email-input-style" type="email" placeholder="请输入被邀人邮箱号" placeholder-style="font-size: 32rpx; font-weight: 400; color: #BAC1D0;">
  5. <img class="clear-btn" src="https://qiniu.bms16.com/Fjpf2YnHUK1_CFf20kKRvjX9YdC3" alt="">
  6. </view>
  7. <view class="next-btn next-btn-i">下一步</view>
  8. </view>
  9. </template>
  10. <script>
  11. var config = require('../../common/config.js');
  12. export default {
  13. data() {
  14. return {
  15. };
  16. }
  17. /**
  18. * 生命周期函数--监听页面加载
  19. */
  20. ,
  21. onLoad: function(options) {
  22. },
  23. methods: {
  24. }
  25. };
  26. </script>
  27. <style>
  28. .add-user-view{
  29. background-color: #FFF;
  30. height: 100vh;
  31. padding: 32rpx;
  32. }
  33. .email-input-style{
  34. width: 100%;
  35. padding: 20rpx 60rpx 20rpx 20rpx;
  36. margin-bottom: 20px;
  37. border-radius: 24rpx;
  38. border: 4rpx solid #060809;
  39. font-weight: 400;
  40. font-size: 32rpx;
  41. color: #BAC1D0;
  42. caret-color: #0A59F7;
  43. }
  44. .email-input-view{
  45. position: relative;
  46. }
  47. .next-btn{
  48. height: 88rpx;
  49. line-height: 88rpx;
  50. font-weight: 600;
  51. font-size: 32rpx;
  52. color: #FFFFFF;
  53. text-align: center;
  54. background: #060809;
  55. border-radius: 44rpx;
  56. }
  57. .next-btn-i{
  58. opacity: 0.2;
  59. }
  60. .clear-btn{
  61. position: absolute;
  62. width: 40rpx;
  63. height: 40rpx;
  64. right: 36rpx;
  65. top: 28rpx;
  66. }
  67. </style>