| | |
| | | <view class="icons"> |
| | | <uni-icons type="person" size="20"></uni-icons> |
| | | </view> |
| | | <text>账号:</text> |
| | | <input type="text" placeholder="请输入账号!" v-model="user.userName" |
| | | <text>手机号:</text> |
| | | <input type="text" placeholder="请输入账号!" v-model="user.phone" |
| | | placeholder-style="font-size:14px;color:#ccc;"> |
| | | </view> |
| | | <view class="user-info-item shadow-warp"> |
| | | <view class="icons"> |
| | | <uni-icons type="locked" size="20"></uni-icons> |
| | | </view> |
| | | <text>密码:</text> |
| | | <input :password="!showPassword" v-model="user.password" placeholder="请输入密码!" |
| | | <text>验证码:</text> |
| | | <input :password="!showPassword" v-model="user.code" placeholder="请输入验证码!" |
| | | placeholder-style="font-size:14px;color:#ccc;"> |
| | | <view class="showPassword" v-if="showPassword" @click="changePassword"> |
| | | <view style="font-size: 24rpx;" > |
| | | <text @click="getCode" v-show="!codeTimeShow">获取验证码</text> |
| | | <text v-show="codeTimeShow">{{codeTime}}秒后重获</text> |
| | | </view> |
| | | <!-- <view class="showPassword" v-if="showPassword" @click="changePassword"> |
| | | <uni-icons type="eye" size="20"></uni-icons> |
| | | </view> |
| | | <view class="showPassword" v-if="!showPassword" @click="changePassword"> |
| | | <uni-icons type="eye-slash" size="20"></uni-icons> |
| | | </view> |
| | | </view> --> |
| | | </view> |
| | | </view> |
| | | <!-- 登录按钮 --> |
| | |
| | | data() { |
| | | return { |
| | | version: '', |
| | | showPassword: false, |
| | | showPassword: true, |
| | | user: { |
| | | userName: '', |
| | | password: '', |
| | | phone: '', |
| | | code: '', |
| | | }, |
| | | load: { |
| | | loading: false, |
| | |
| | | }, |
| | | msgType: 'success', |
| | | filename: '', |
| | | dialogContent: '' |
| | | dialogContent: '', |
| | | codeTime: 60, |
| | | codeTimeShow: false |
| | | } |
| | | }, |
| | | onLoad: function() { |
| | |
| | | this.getVersion() |
| | | }, |
| | | methods: { |
| | | // 获取验证码 |
| | | getCode() { |
| | | let _this = this |
| | | uni.request({ |
| | | url: `${_this.baseUrl}/smsCode/sendCode`, |
| | | header: {'content-type': 'application/x-www-form-urlencoded;charset=UTF-8'}, |
| | | data: {phone: _this.user.phone}, |
| | | sslVerify: false, |
| | | method: 'POST', |
| | | success(res) { |
| | | res = res.data |
| | | console.log(res); |
| | | _this.codeTimeShow = true |
| | | let time = setInterval(()=>{ |
| | | _this.codeTime-- |
| | | },1000) |
| | | setTimeout(()=>{ |
| | | _this.codeTimeShow = false |
| | | clearTimeout(time); |
| | | _this.codeTime = 60 |
| | | },60000) |
| | | } |
| | | }) |
| | | }, |
| | | changePassword: function() { |
| | | this.showPassword = !this.showPassword; |
| | | }, |
| | |
| | | }, |
| | | onLogin() { |
| | | let that = this |
| | | if (that.user.phone == '') { |
| | | uni.showToast({ title: '请输入手机号', icon: "none" }) |
| | | return |
| | | } |
| | | if (that.user.code == '') { |
| | | uni.showToast({ title: '验证码不能为空', icon: "none" }) |
| | | return |
| | | } |
| | | uni.request({ |
| | | url: that.baseUrl + '/login.action', |
| | | url: that.baseUrl + '/smsLogin.action', |
| | | fail(result) { |
| | | uni.showToast({ |
| | | icon: 'error', |
| | |
| | | }) |
| | | }, |
| | | data: { |
| | | username: that.user.userName, |
| | | password: md5.hex_md5(that.user.password) |
| | | phone: that.user.phone, |
| | | code: that.user.code |
| | | }, |
| | | header: { |
| | | "content-type": "application/json" |
| | | }, |
| | | header: { "content-type": "application/json" }, |
| | | success(result) { |
| | | if (result.statusCode === 404) { |
| | | uni.showToast({ |
| | |
| | | } |
| | | |
| | | .user-info-item>input { |
| | | width: 400rpx; |
| | | width: 300rpx; |
| | | color: #606266; |
| | | font-weight: 500; |
| | | caret-color: #606266; // 光标颜色 |