bind_eMail.vue 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116
  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. var url = ''
  55. switch(that.type) {
  56. case 'username':
  57. data.nickname = that.username;
  58. url = '/data/api.business.User/user_edit';
  59. break;
  60. case 'sex':
  61. data.sex = that.sex == '男'?'1':'2';
  62. url = '/data/api.business.User/user_edit';
  63. break;
  64. case 'email':
  65. data.mailbox = that.email;
  66. url = '/data/api.business.User/user_mailbox';
  67. break;
  68. }
  69. $api.req({
  70. url: url,
  71. method: 'POST',
  72. data: data
  73. }, function(res) {
  74. if(res.code == 1) {
  75. $api.info(res.info)
  76. // let options = {
  77. // nickname: that.username,
  78. // }
  79. // uni.WebIM.conn.updateOwnUserInfo(options).then((res) => {
  80. // console.log(res)
  81. // $api.jump(1,-1)
  82. // })
  83. }
  84. })
  85. },
  86. // 选择性别
  87. bindPickerChange(e) {
  88. that.sex = that.array[e.detail.value]
  89. }
  90. },
  91. }
  92. </script>
  93. <style lang="scss" scoped>
  94. .content::v-deep {
  95. background-color: #fff;
  96. padding: 32rpx 30rpx 0;
  97. .u-input {
  98. padding: 28rpx 0 !important;
  99. }
  100. .btn {
  101. margin: 112rpx auto 0;
  102. width: 630rpx;
  103. height: 92rpx;
  104. border-radius: 50rpx;
  105. background-color: #506dff;
  106. color: #fff;
  107. font-size: 36rpx;
  108. text-align: center;
  109. line-height: 92rpx;
  110. }
  111. }
  112. </style>