bind_eMail.vue 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  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. var title = ""
  35. switch(that.type) {
  36. case 'username':
  37. title = '修改昵称';
  38. break;
  39. case 'sex':
  40. title = '修改性别';
  41. break;
  42. case 'email':
  43. title = '邮箱绑定';
  44. break;
  45. }
  46. uni.setNavigationBarTitle({
  47. title: title
  48. })
  49. },
  50. methods: {
  51. // 修改信息
  52. bind() {
  53. var data = {}
  54. switch(that.type) {
  55. case 'username':
  56. data.nickname = that.username;
  57. break;
  58. case 'sex':
  59. data.base_sex = that.sex;
  60. break;
  61. case 'email':
  62. data.email = that.email;
  63. break;
  64. }
  65. $api.req({
  66. url: '/data/api.auth.Center/set',
  67. method: 'POST',
  68. data: data
  69. }, function(res) {
  70. if(res.code == 1) {
  71. $api.info(res.info)
  72. let options = {
  73. nickname: that.username,
  74. }
  75. uni.WebIM.conn.updateOwnUserInfo(options).then((res) => {
  76. console.log(res)
  77. $api.jump(1,-1)
  78. })
  79. }
  80. })
  81. },
  82. // 选择性别
  83. bindPickerChange(e) {
  84. that.sex = that.array[e.detail.value]
  85. }
  86. },
  87. }
  88. </script>
  89. <style lang="scss" scoped>
  90. .content::v-deep {
  91. background-color: #fff;
  92. padding: 32rpx 30rpx 0;
  93. .u-input {
  94. padding: 28rpx 0 !important;
  95. }
  96. .btn {
  97. margin: 112rpx auto 0;
  98. width: 630rpx;
  99. height: 92rpx;
  100. border-radius: 50rpx;
  101. background-color: #506dff;
  102. color: #fff;
  103. font-size: 36rpx;
  104. text-align: center;
  105. line-height: 92rpx;
  106. }
  107. }
  108. </style>