123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123 |
- <template>
- <view class="content">
- <view class="form vflex">
- <u-input v-model="userInfo.userName" placeholder="请输入昵称"></u-input>
- <u-input v-model="userInfo.name" placeholder="请输入手机号码"></u-input>
- <u-input v-model="code" placeholder="请输入验证码">
- <template slot="suffix">
- <u-code ref="uCode" @change="codeChange" seconds="60" changeText="X秒重新获取"></u-code>
- <view class="code" @tap="getCode" :text="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="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: '',
- password: ''
- },
- code: '',
- tips: '获取验证码',
- pwd_type: 'password',
- }
- },
- onLoad() {
- that = this
- },
- watch: {
- value(newValue,oldValue) {
-
- }
- },
- methods: {
- // 验证码文字
- codeChange(text) {
- that.tips = text
- },
- // 获取验证码
- getCode() {
- if(that.$refs.uCode.canGetCode) {
- uni.showLoading({
- title: '正在获取验证码'
- })
- setTimeout(()=> {
- uni.hideLoading();
- uni.$u.toast('验证码已发送')
- this.$refs.uCode.start()
- },2000)
- } else {
- uni.$u.toast('倒计时结束后再发送')
- }
- },
- // 提交
- submit() {
- if ($api.formCheck(that.userInfo.name,"phone") && $api.formCheck(that.code, "code6") && $api.formCheck(that.userInfo.password,"password")) {
- if (!that.agree) {
- $api.info('请先阅读并同意用户协议和隐私协议')
- } else {
- 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;
- }
- }
- .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>
|