123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203 |
- <template>
- <view class="content">
- <view class="title">验证码登录</view>
- <view class="form vflex">
- <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" >{{tips}}</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="login">
- <view>登录</view>
- </view>
- <view class="hflex acenter jcenter bottom">
- <view class="text_style1" @click="pwdLogin">账号密码登录</view>
- </view>
- <!-- 弹出层 -->
- <u-modal :show="showProtocol" :title="protocolTitle" confirmColor="#2988FE" @confirm="isRead" confirmText="我已阅读">
- <view class="slot-content">
- <rich-text :nodes="protocolContent"></rich-text>
- </view>
- </u-modal>
- </view>
- </template>
- <script>
- import $api from '@/static/js/api.js'
- var that = ''
- export default {
- data() {
- return {
- userInfo: {
- name: '',
- },
- code: '',
- tips: '',
- agree: false,
- showProtocol: false,
- protocolTitle: '',
- protocolContent: '',
- }
- },
- onLoad() {
- that = this
- },
- methods: {
- // 验证码文字
- codeChange(text) {
- that.tips = text
- },
- // 获取验证码
- getCode() {
- if(that.$refs.uCode.canGetCode) {
- uni.showLoading({
- title: '正在获取验证码'
- })
- $api.req({
- url: '/data/api.Login/sendsms',
- method: 'POST',
- data: {
- phone: that.userInfo.name,
- type: 5
- }
- }, 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
- },
- // 打开弹出层
- open(index) {
-
- const that = this
- $api.jump('/pages/login/xieyi?title=用户服务协议&data=' + index)
- /* $api.req({
- url: '/data/api.business.Login/getconfigset'
- }, function(res) {
- if (res.code == 1) {
- if(index == 0) {
- $api.jump('/pages/login/xieyi?title=用户服务协议&data=0')
- } else {
- $api.jump('/pages/login/xieyi?title=个人隐私保护政策&data=1')
- }
- }
- }) */
- },
- // 已阅读
- isRead() {
- that.showProtocol = false
- that.agree = true
- },
- // 登录
- login() {
- if ($api.formCheck(that.userInfo.name,"phone")) {
- if (!that.agree) {
- $api.info('请先阅读并同意用户协议和隐私协议')
- } else {
- $api.req({
- url: '/data/api.business.Login/login',
- method: 'POST',
- data: {
- mobile: that.userInfo.name,
- type: 2,
- code: that.code,
- }
- }, function(res) {
- console.log(res)
- if(res.code == 1) {
- wx.setStorageSync("token",res.data)
- $api.jump('/pages/tabbar/mine/mine',2)
-
- }
- })
- }
- }
- },
- // 账号密码登录
- pwdLogin() {
- $api.jump('/pages/login/login/login')
- },
- },
- }
- </script>
- <style lang="scss" scoped>
- .content::v-deep {
- padding: 0 60rpx;
- .title {
- margin: 64rpx 0;
- font-size: 52rpx;
- color: #222;
- }
- .form {
- margin-bottom: 100rpx;
- .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;
- }
- .bottom {
- width: 100%;
- .text_style1 {
- font-size: 24rpx;
- color: #555;
- }
- .text_style2 {
- font-size: 24rpx;
- color: #506dff;
- }
- }
-
- }
- </style>
|