bind_eMail.vue 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121
  1. <template>
  2. <view class="content">
  3. <view class="" v-if="type=='email'">
  4. <u-input v-model="email" border="bottom" placeholder="请输入邮箱账号"></u-input>
  5. </view>
  6. <view class="" v-if="type=='username'">
  7. <u-input v-model="username" border="bottom" placeholder="请输入昵称"></u-input>
  8. </view>
  9. <view class="" v-if="type=='sex'">
  10. <picker @change="bindPickerChange" :value="index" :range="array">
  11. <u-input v-model="sex" disabled disabledColor="#fff" border="bottom" placeholder="请选择性别"></u-input>
  12. </picker>
  13. </view>
  14. <view class="btn" @click="bind">确定</view>
  15. </view>
  16. </template>
  17. <script>
  18. import $api from '@/static/js/api.js'
  19. var that = ''
  20. export default {
  21. data() {
  22. return {
  23. email: '',
  24. type: '',
  25. username: '',
  26. sex: '',
  27. array: ["男","女"]
  28. }
  29. },
  30. onLoad(options) {
  31. that = this
  32. console.log(options);
  33. that.type = options.type
  34. },
  35. onReady() {
  36. var title = ""
  37. switch(that.type) {
  38. case 'username':
  39. title = '修改昵称';
  40. break;
  41. case 'sex':
  42. title = '修改性别';
  43. break;
  44. case 'email':
  45. title = '邮箱绑定';
  46. break;
  47. }
  48. uni.setNavigationBarTitle({
  49. title: title
  50. })
  51. },
  52. methods: {
  53. // 修改信息
  54. bind() {
  55. var data = {}
  56. var url = ''
  57. switch(that.type) {
  58. case 'username':
  59. data.nickname = that.username;
  60. url = '/data/api.business.User/user_edit';
  61. break;
  62. case 'sex':
  63. data.sex = that.sex == '男'?'1':'2';
  64. url = '/data/api.business.User/user_edit';
  65. break;
  66. case 'email':
  67. data.mailbox = that.email;
  68. url = '/data/api.business.User/user_mailbox';
  69. break;
  70. }
  71. $api.req({
  72. url: url,
  73. method: 'POST',
  74. data: data
  75. }, function(res) {
  76. if(res.code == 1) {
  77. $api.info(res.info)
  78. if(that.type == 'username') {
  79. let options = {
  80. nickname: that.username,
  81. }
  82. uni.WebIM.conn.updateOwnUserInfo(options).then((res) => {
  83. console.log(res)
  84. })
  85. }
  86. $api.jump(1,-1)
  87. }
  88. })
  89. },
  90. // 选择性别
  91. bindPickerChange(e) {
  92. that.sex = that.array[e.detail.value]
  93. }
  94. },
  95. }
  96. </script>
  97. <style lang="scss" scoped>
  98. .content::v-deep {
  99. background-color: #fff;
  100. padding: 32rpx 30rpx 0;
  101. .u-input {
  102. padding: 28rpx 0 !important;
  103. }
  104. .btn {
  105. margin: 112rpx auto 0;
  106. width: 630rpx;
  107. height: 92rpx;
  108. border-radius: 50rpx;
  109. background-color: #506dff;
  110. color: #fff;
  111. font-size: 36rpx;
  112. text-align: center;
  113. line-height: 92rpx;
  114. }
  115. }
  116. </style>