register.vue 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209
  1. <template>
  2. <view class="content">
  3. <view class="form vflex">
  4. <u-input v-model="userInfo.name" placeholder="请输入昵称"></u-input>
  5. <u-input v-model="userInfo.phone" placeholder="请输入手机号码"></u-input>
  6. <u-input v-model="userInfo.code" placeholder="请输入验证码">
  7. <template slot="suffix">
  8. <u-code ref="uCode" @change="codeChange" seconds="60" changeText="X秒重新获取"></u-code>
  9. <view class="code" @tap="getCode">{{tips}}</view>
  10. </template>
  11. </u-input>
  12. <u-input :type="pwd_type" v-model="userInfo.password" placeholder="请输入密码">
  13. <template slot="suffix">
  14. <view @click="show_pwd" v-if="pwd_type == 'password'">
  15. <image src="/static/images/login/biyanjing.png" class="pwd_icon"></image>
  16. </view>
  17. <view @click="show_pwd" v-if="pwd_type == 'text'">
  18. <image src="/static/images/login/yanjing.png" class="pwd_icon"></image>
  19. </view>
  20. </template>
  21. </u-input>
  22. </view>
  23. <view class="hflex acenter">
  24. <u-checkbox-group @change="checkboxChange">
  25. <u-checkbox v-model="agree" shape="circle"></u-checkbox>
  26. </u-checkbox-group>
  27. <view class="text">阅读并同意<span class="read" @click="open(0)">《用户服务协议》</span>、<span class="read" @click="open(1)">《个人信息保护政策》</span></view>
  28. </view>
  29. <view class="button hflex acenter jcenter" @click="submit">
  30. <view>注册</view>
  31. </view>
  32. </view>
  33. </template>
  34. <script>
  35. import $api from '@/static/js/api.js'
  36. var that = ''
  37. export default {
  38. data() {
  39. return {
  40. userInfo: {
  41. name: '',
  42. phone: '',
  43. password: '',
  44. code: '',
  45. },
  46. tips: '',
  47. agree: false,
  48. pwd_type: 'password',
  49. show_pwd: false
  50. }
  51. },
  52. onLoad() {
  53. that = this
  54. },
  55. watch: {
  56. value(newValue,oldValue) {
  57. }
  58. },
  59. methods: {
  60. // 验证码文字
  61. codeChange(text) {
  62. that.tips = text
  63. },
  64. // 获取验证码
  65. getCode() {
  66. if(that.$refs.uCode.canGetCode) {
  67. uni.showLoading({
  68. title: '正在获取验证码'
  69. })
  70. $api.req({
  71. url: '/data/api.Login/sendsms',
  72. data: {
  73. phone: that.userInfo.phone,
  74. type: 2
  75. }
  76. }, function(res) {
  77. uni.hideLoading();
  78. if(res.code == 1) {
  79. uni.$u.toast('验证码已发送')
  80. that.$refs.uCode.start()
  81. } else {
  82. uni.$u.toast('验证码发送失败')
  83. }
  84. })
  85. } else {
  86. uni.$u.toast('倒计时结束后再发送')
  87. }
  88. },
  89. // 阅读并同意
  90. checkboxChange(n) {
  91. this.agree = !this.agree
  92. },
  93. // 提交
  94. submit() {
  95. if ($api.formCheck(that.userInfo.name,"required") && $api.formCheck(that.userInfo.phone,"phone") && $api.formCheck(that.userInfo.code, "code4") && $api.formCheck(that.userInfo.password,"password")) {
  96. if (!that.agree) {
  97. $api.info('请先阅读并同意用户协议和隐私协议')
  98. } else {
  99. $api.req({
  100. url: '/data/api.Login/register',
  101. method: 'POST',
  102. data: {
  103. nickname: that.userInfo.name,
  104. phone: that.userInfo.phone,
  105. verify: that.userInfo.code,
  106. password: that.userInfo.password,
  107. }
  108. }, function(res) {
  109. console.log(res)
  110. if(res.code == 1) {
  111. wx.setStorageSync("token",res.data.token)
  112. wx.setStorageSync("id",res.data.id)
  113. var options = {
  114. username: res.data.id,
  115. password: '123456',
  116. nickname: res.data.nickname,
  117. appKey: uni.WebIM.config.appkey,
  118. success: function () {
  119. $api.jump('/pages/tabbar/mine/mine',3)
  120. },
  121. error: function (err) {
  122. let errorData = JSON.parse(err.data);
  123. if (errorData.error === 'duplicate_unique_property_exists') {
  124. console.log('用户已存在!');
  125. } else if (errorData.error === 'illegal_argument') {
  126. if (errorData.error_description === 'USERNAME_TOO_LONG') {
  127. console.log('用户名超过64个字节!')
  128. }else{
  129. console.log('用户名不合法!')
  130. }
  131. } else if (errorData.error === 'unauthorized') {
  132. console.log('注册失败,无权限!')
  133. } else if (errorData.error === 'resource_limited') {
  134. console.log('您的App用户注册数量已达上限,请升级至企业版!')
  135. }
  136. },
  137. };
  138. uni.WebIM.conn.registerUser(options);
  139. // uni.WebIM.conn.registerUser({
  140. // /** 用户 ID。 */
  141. // username: res.data.id,
  142. // /** 密码。 */
  143. // password: '123456',
  144. // /** 显示昵称。用于移动端推送的时候通知栏显示。 */
  145. // nickname:res.data.nickname,
  146. // appKey: uni.WebIM.config.appkey
  147. // }).then((res2) => {
  148. // console.log(res2)
  149. // $api.jump('/pages/tabbar/mine/mine',3)
  150. // })
  151. }
  152. })
  153. // wx.setStorageSync("token",true)
  154. // $api.jump('/pages/tabbar/mine/mine',3)
  155. }
  156. }
  157. }
  158. },
  159. }
  160. </script>
  161. <style lang="scss" scoped>
  162. .content::v-deep {
  163. padding: 0 60rpx;
  164. .form {
  165. width: 100%;
  166. padding-top: 64rpx;
  167. .u-input {
  168. width: 630rpx !important;
  169. height: 104rpx !important;
  170. background-color: #f4f4f4;
  171. border-radius: 52rpx;
  172. font-size: 30rpx !important;
  173. box-sizing: border-box;
  174. padding: 30rpx 48rpx !important;
  175. margin: 26rpx 0;
  176. }
  177. .pwd_icon {
  178. width: 40rpx;
  179. height: 40rpx;
  180. }
  181. .code {
  182. font-size: 30rpx;
  183. color: #506dff;
  184. }
  185. }
  186. .text {
  187. font-size: 24rpx;
  188. color: #9c9c9c;
  189. }
  190. .read {
  191. color: #2a63f3;
  192. }
  193. .button {
  194. width: 100%;
  195. height: 96rpx;
  196. background-color: #506dff;
  197. border-radius: 50rpx;
  198. box-shadow: 0 4rpx 28rpx 0 rgba(132,123,255,0.4);
  199. font-size: 40rpx;
  200. color: #fff;
  201. margin: 40rpx 0 36rpx;
  202. }
  203. }
  204. </style>