addUser.vue 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  1. <template>
  2. <view class="add-user-view">
  3. <navBar :name="$t('添加成员')" left="0"/>
  4. <view class="flex-row email-input-view">
  5. <input class="email-input-style" type="email" v-model="email" :placeholder="$t('请输入被邀人邮箱号')" placeholder-style="font-size: 32rpx; font-weight: 400; color: #BAC1D0;">
  6. <img @tap="closeEmail" class="clear-btn" src="https://qiniu.bms16.com/Fjpf2YnHUK1_CFf20kKRvjX9YdC3" alt="">
  7. </view>
  8. <view @click="nextFn" class="next-btn" :class="{'next-btn-i':!isEmailFn(email)}">{{ $t('下一步') }}</view>
  9. </view>
  10. </template>
  11. <script>
  12. var config = require('../../common/config_gyq.js');
  13. var http = require('../../common/request.js');
  14. import { isEmail } from '../../utils/util.js';
  15. import { msg } from '../../utils/util.js';
  16. export default {
  17. data() {
  18. return {
  19. email:""
  20. };
  21. }
  22. /**
  23. * 生命周期函数--监听页面加载
  24. */
  25. ,
  26. onLoad: function(options) {
  27. },
  28. methods: {
  29. closeEmail(){
  30. this.email = ""
  31. },
  32. isEmailFn(str){
  33. return isEmail(str)
  34. },
  35. async nextFn(){
  36. let {data} = await http.postApi(config.API_ACCOUNT_CHECK_SHARE_ACCOUNT_EXIST,{
  37. email:this.email
  38. })
  39. if(data.code == 200){
  40. if(data.data.exist){
  41. uni.navigateTo({
  42. url:`/pages/powerSetting/powerSetting?email=${this.email}&headimg=${data.data.headimg}&nickname=${data.data.nickname}&isSet=1`
  43. })
  44. }else{
  45. msg(this.$t('该用户不存在!'))
  46. }
  47. }else{
  48. msg(data.msg)
  49. }
  50. },
  51. clearInput() {
  52. this.email = ''
  53. }
  54. }
  55. };
  56. </script>
  57. <style>
  58. .add-user-view{
  59. background-color: #FFF;
  60. height: 100vh;
  61. padding: 32rpx;
  62. /* margin-top: 32rpx; */
  63. }
  64. .email-input-style{
  65. width: 100%;
  66. padding: 20rpx 60rpx 20rpx 20rpx;
  67. margin-bottom: 20px;
  68. border-radius: 24rpx;
  69. border: 4rpx solid #060809;
  70. font-weight: 400;
  71. font-size: 32rpx;
  72. color: #333;
  73. caret-color: #0A59F7;
  74. }
  75. .email-input-view{
  76. position: relative;
  77. }
  78. .next-btn{
  79. height: 88rpx;
  80. line-height: 88rpx;
  81. font-weight: 600;
  82. font-size: 32rpx;
  83. color: #FFFFFF;
  84. text-align: center;
  85. background: #060809;
  86. border-radius: 44rpx;
  87. }
  88. .next-btn-i{
  89. opacity: 0.2;
  90. }
  91. .clear-btn{
  92. position: absolute;
  93. width: 40rpx;
  94. height: 40rpx;
  95. right: 36rpx;
  96. top: 28rpx;
  97. z-index: 9;
  98. }
  99. </style>