123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209 |
- <template>
- <view class="content">
- <view class="form vflex">
- <u-input v-model="userInfo.name" placeholder="请输入昵称"></u-input>
- <u-input v-model="userInfo.phone" placeholder="请输入手机号码"></u-input>
- <u-input v-model="userInfo.code" placeholder="请输入验证码">
- <template slot="suffix">
- <u-code ref="uCode" @change="codeChange" seconds="60" changeText="X秒重新获取"></u-code>
- <view class="code" @tap="getCode">{{tips}}</view>
- </template>
- </u-input>
- <u-input :type="pwd_type" v-model="userInfo.password" placeholder="请输入密码">
- <template slot="suffix">
- <view @click="show_pwd" v-if="pwd_type == 'password'">
- <image src="/static/images/login/biyanjing.png" class="pwd_icon"></image>
- </view>
- <view @click="show_pwd" v-if="pwd_type == 'text'">
- <image src="/static/images/login/yanjing.png" class="pwd_icon"></image>
- </view>
- </template>
- </u-input>
- </view>
- <view class="hflex acenter">
- <u-checkbox-group @change="checkboxChange">
- <u-checkbox v-model="agree" shape="circle"></u-checkbox>
- </u-checkbox-group>
- <view class="text">阅读并同意<span class="read" @click="open(0)">《用户服务协议》</span>、<span class="read" @click="open(1)">《个人信息保护政策》</span></view>
- </view>
- <view class="button hflex acenter jcenter" @click="submit">
- <view>注册</view>
- </view>
- </view>
- </template>
- <script>
- import $api from '@/static/js/api.js'
- var that = ''
- export default {
- data() {
- return {
- userInfo: {
- name: '',
- phone: '',
- password: '',
- code: '',
- },
- tips: '',
- agree: false,
- pwd_type: 'password',
- show_pwd: false
- }
- },
- onLoad() {
- that = this
- },
- watch: {
- value(newValue,oldValue) {
-
- }
- },
- methods: {
- // 验证码文字
- codeChange(text) {
- that.tips = text
- },
- // 获取验证码
- getCode() {
- if(that.$refs.uCode.canGetCode) {
- uni.showLoading({
- title: '正在获取验证码'
- })
- $api.req({
- url: '/data/api.Login/sendsms',
- data: {
- phone: that.userInfo.phone,
- type: 2
- }
- }, function(res) {
- uni.hideLoading();
- if(res.code == 1) {
- uni.$u.toast('验证码已发送')
- that.$refs.uCode.start()
- } else {
- uni.$u.toast('验证码发送失败')
- }
- })
- } else {
- uni.$u.toast('倒计时结束后再发送')
- }
- },
- // 阅读并同意
- checkboxChange(n) {
- this.agree = !this.agree
- },
- // 提交
- submit() {
- 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")) {
- if (!that.agree) {
- $api.info('请先阅读并同意用户协议和隐私协议')
- } else {
- $api.req({
- url: '/data/api.Login/register',
- method: 'POST',
- data: {
- nickname: that.userInfo.name,
- phone: that.userInfo.phone,
- verify: that.userInfo.code,
- password: that.userInfo.password,
- }
- }, function(res) {
- console.log(res)
- if(res.code == 1) {
- wx.setStorageSync("token",res.data.token)
- wx.setStorageSync("id",res.data.id)
- var options = {
- username: res.data.id,
- password: '123456',
- nickname: res.data.nickname,
- appKey: uni.WebIM.config.appkey,
- success: function () {
- $api.jump('/pages/tabbar/mine/mine',3)
- },
- error: function (err) {
- let errorData = JSON.parse(err.data);
- if (errorData.error === 'duplicate_unique_property_exists') {
- console.log('用户已存在!');
- } else if (errorData.error === 'illegal_argument') {
- if (errorData.error_description === 'USERNAME_TOO_LONG') {
- console.log('用户名超过64个字节!')
- }else{
- console.log('用户名不合法!')
- }
- } else if (errorData.error === 'unauthorized') {
- console.log('注册失败,无权限!')
- } else if (errorData.error === 'resource_limited') {
- console.log('您的App用户注册数量已达上限,请升级至企业版!')
- }
- },
- };
- uni.WebIM.conn.registerUser(options);
- // uni.WebIM.conn.registerUser({
- // /** 用户 ID。 */
- // username: res.data.id,
- // /** 密码。 */
- // password: '123456',
- // /** 显示昵称。用于移动端推送的时候通知栏显示。 */
- // nickname:res.data.nickname,
- // appKey: uni.WebIM.config.appkey
- // }).then((res2) => {
- // console.log(res2)
-
- // $api.jump('/pages/tabbar/mine/mine',3)
- // })
-
- }
- })
- // wx.setStorageSync("token",true)
- // $api.jump('/pages/tabbar/mine/mine',3)
- }
- }
- }
- },
- }
- </script>
- <style lang="scss" scoped>
- .content::v-deep {
- padding: 0 60rpx;
- .form {
- width: 100%;
- padding-top: 64rpx;
- .u-input {
- width: 630rpx !important;
- height: 104rpx !important;
- background-color: #f4f4f4;
- border-radius: 52rpx;
- font-size: 30rpx !important;
- box-sizing: border-box;
- padding: 30rpx 48rpx !important;
- margin: 26rpx 0;
- }
- .pwd_icon {
- width: 40rpx;
- height: 40rpx;
- }
- .code {
- font-size: 30rpx;
- color: #506dff;
- }
- }
- .text {
- font-size: 24rpx;
- color: #9c9c9c;
- }
- .read {
- color: #2a63f3;
- }
- .button {
- width: 100%;
- height: 96rpx;
- background-color: #506dff;
- border-radius: 50rpx;
- box-shadow: 0 4rpx 28rpx 0 rgba(132,123,255,0.4);
- font-size: 40rpx;
- color: #fff;
- margin: 40rpx 0 36rpx;
- }
- }
- </style>
|