addUser.vue 843 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. <template>
  2. <view class="add-user-view">
  3. <view class="flex-row">
  4. <input class="email-input-style" type="email" placeholder="请输入被邀人邮箱号" placeholder-style="font-size: 32rpx; font-weight: 400; color: #BAC1D0;">
  5. </view>
  6. <view class="next-btn">下一步</view>
  7. </view>
  8. </template>
  9. <script>
  10. var config = require('../../common/config.js');
  11. export default {
  12. data() {
  13. return {
  14. };
  15. }
  16. /**
  17. * 生命周期函数--监听页面加载
  18. */
  19. ,
  20. onLoad: function(options) {
  21. },
  22. methods: {
  23. }
  24. };
  25. </script>
  26. <style>
  27. .add-user-view{
  28. background-color: #FFF;
  29. height: 100vh;
  30. padding: 32rpx;
  31. }
  32. .email-input-style{
  33. width: 100%;
  34. padding: 10px;
  35. margin-bottom: 20px;
  36. border-radius: 24rpx;
  37. border: 4rpx solid #060809;
  38. font-weight: 400;
  39. font-size: 32rpx;
  40. color: #BAC1D0;
  41. caret-color: #0A59F7;
  42. }
  43. </style>