bind_eMail.vue 781 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. <template>
  2. <view class="content">
  3. <view class="">
  4. <u-input v-model="email" border="bottom" placeholder="请输入邮箱账号"></u-input>
  5. <view class="btn">确定</view>
  6. </view>
  7. </view>
  8. </template>
  9. <script>
  10. import $api from '@/static/js/api.js'
  11. var that = ''
  12. export default {
  13. data() {
  14. return {
  15. email: '',
  16. }
  17. },
  18. onLoad() {
  19. that = this
  20. },
  21. methods: {
  22. },
  23. }
  24. </script>
  25. <style lang="scss" scoped>
  26. .content::v-deep {
  27. background-color: #fff;
  28. padding: 32rpx 30rpx 0;
  29. .u-input {
  30. padding: 28rpx 0 !important;
  31. }
  32. .btn {
  33. margin: 112rpx auto 0;
  34. width: 630rpx;
  35. height: 92rpx;
  36. border-radius: 50rpx;
  37. background-color: #506dff;
  38. color: #fff;
  39. font-size: 36rpx;
  40. text-align: center;
  41. line-height: 92rpx;
  42. }
  43. }
  44. </style>