login.vue 9.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306
  1. <template>
  2. <view class="zai-box">
  3. <scroll-view scroll-y class="page">
  4. <view class="text-center" :style="[{animation: 'show ' + 0.4+ 's 1'}]">
  5. <image src="https://static.jeecg.com/upload/test/login4_1595818039175.png" mode='aspectFit' class="zai-logo "></image>
  6. <view class="zai-title text-shadow ">JEECG BOOT </view>
  7. </view>
  8. <view class="box padding-lr-xl login-paddingtop" :style="[{animation: 'show ' + 0.6+ 's 1'}]">
  9. <block v-if="loginWay==1">
  10. <view class="cu-form-group margin-top shadow-warp" :class="[shape=='round'?'round':'']">
  11. <view class="title"><text class="cuIcon-people margin-right-xs"></text>账号:</view>
  12. <input placeholder="请输入账号" name="input" v-model="userName"></input>
  13. </view>
  14. <view class="cu-form-group margin-top shadow-warp" :class="[shape=='round'?'round':'']">
  15. <view class="title"><text class="cuIcon-lock margin-right-xs"></text>密码:</view>
  16. <input class="uni-input" placeholder="请输入密码" :password="!showPassword" v-model="password" />
  17. <view class="action text-lg">
  18. <text :class="[showPassword ? 'cuIcon-attention' : 'cuIcon-attentionforbid']" @click="changePassword"></text>
  19. </view>
  20. </view>
  21. <view class="padding text-center margin-top">
  22. <button class="cu-btn bg-blue lg margin-right shadow" :loading="loading" :class="[shape=='round'?'round':'']"
  23. @tap="onLogin"><text space="emsp">{{loading ? "登录中...":" 登录 "}}</text>
  24. </button>
  25. <button class="cu-btn line-blue lg margin-left shadow" :loading="loading" :class="[shape=='round'?'round':'']"
  26. @tap="loginWay=3-loginWay">短信登录
  27. </button>
  28. </view>
  29. </block>
  30. <block v-else>
  31. <view class="cu-form-group margin-top shadow-warp" :class="[shape=='round'?'round':'']">
  32. <view class="title"><text class="cuIcon-mobile margin-right-xs"></text>手机号:</view>
  33. <input placeholder="请输入手机号" type="number" maxlength="11" v-model="phoneNo"></input>
  34. </view>
  35. <view class="cu-form-group margin-top shadow-warp" :class="[shape=='round'?'round':'']">
  36. <view class="title"><text class="cuIcon-lock margin-right-xs"></text>验证码:</view>
  37. <input class="uni-input" placeholder="请输入验证码" v-model="smsCode"/>
  38. <view class="action">
  39. <button class="cu-btn line-blue sm" :disabled="!isSendSMSEnable" @click="onSMSSend"> {{ getSendBtnText }}</button>
  40. </view>
  41. </view>
  42. <view class="padding text-center margin-top">
  43. <button class="cu-btn bg-blue lg margin-right shadow" :loading="loading" :class="[shape=='round'?'round':'']"
  44. @tap="onSMSLogin"><text space="emsp">{{loading ? "登录中...":" 登录 "}}</text>
  45. </button>
  46. <button class="cu-btn line-blue lg margin-left shadow" :loading="loading" :class="[shape=='round'?'round':'']"
  47. @tap="loginWay=1">账户登录
  48. </button>
  49. </view>
  50. </block>
  51. <!-- #ifdef APP-PLUS -->
  52. <view class="padding flex flex-direction text-center">
  53. 当前版本:{{version}}
  54. </view>
  55. <!-- #endif -->
  56. </view>
  57. </scroll-view>
  58. <!-- 登录加载弹窗 -->
  59. <view class="cu-load load-modal" v-if="loading">
  60. <!-- <view class="cuIcon-emojifill text-orange"></view> -->
  61. <image src="https://static.jeecg.com/upload/test/login4_1595818039175.png" mode="aspectFit" class="round"></image>
  62. <view class="gray-text">登录中...</view>
  63. </view>
  64. </view>
  65. </template>
  66. <script>
  67. import { ACCESS_TOKEN,USER_NAME,USER_INFO } from "@/common/util/constants"
  68. import { mapActions } from "vuex"
  69. import configService from '@/common/service/config.service.js';
  70. export default {
  71. data() {
  72. return {
  73. shape:'',//round 圆形
  74. loading: false,
  75. userName: '',
  76. password: '',
  77. phoneNo: '',
  78. smsCode: '',
  79. showPassword: false, //是否显示明文
  80. loginWay: 1, //1: 账密,2:验证码
  81. smsCountDown: 0,
  82. smsCountInterval: null,
  83. toggleDelay: false,
  84. version:'',
  85. //第三方登录相关信息
  86. thirdType:"",
  87. thirdLoginInfo:"",
  88. thirdLoginState:false,
  89. bindingPhoneModal:false,
  90. thirdUserUuid:'',
  91. url: {
  92. bindingThirdPhone: '/sys/thirdLogin/bindingThirdPhone'
  93. }
  94. };
  95. },
  96. onLoad:function(){
  97. // #ifdef APP-PLUS
  98. var that=this
  99. plus.runtime.getProperty( plus.runtime.appid, function ( wgtinfo ) {
  100. that.version=wgtinfo.version
  101. });
  102. // #endif
  103. },
  104. computed: {
  105. isSendSMSEnable() {
  106. return this.smsCountDown <= 0 && this.phoneNo.length > 4;
  107. },
  108. getSendBtnText() {
  109. if (this.smsCountDown > 0) {
  110. return this.smsCountDown + '秒后发送';
  111. } else {
  112. return '发送验证码';
  113. }
  114. },
  115. canSMSLogin() {
  116. return this.userName.length > 4 && this.smsCode.length > 4;
  117. },
  118. canPwdLogin() {
  119. return this.userName.length > 4 && this.password.length > 4;
  120. },
  121. },
  122. methods: {
  123. ...mapActions([ "mLogin","PhoneLogin","ThirdLogin" ]),
  124. onLogin: function (){
  125. if(!this.userName || this.userName.length==0){
  126. this.$tip.toast('请填写用户名');
  127. return;
  128. }
  129. if(!this.password || this.password.length==0){
  130. this.$tip.toast('请填写密码');
  131. return;
  132. }
  133. let loginParams = {
  134. username:this.userName,
  135. password:this.password
  136. }
  137. this.loading=true;
  138. this.mLogin(loginParams).then((res) => {
  139. this.loading=false;
  140. if(res.data.success){
  141. // #ifdef APP-PLUS
  142. this.saveClientId()
  143. // #endif
  144. // #ifndef APP-PLUS
  145. this.$tip.success('登录成功!')
  146. this.$Router.replaceAll({name:'index'})
  147. // #endif
  148. }else{
  149. this.$tip.alert(res.data.message);
  150. }
  151. }).catch((err) => {
  152. let msg = err.data.message || "请求出现错误,请稍后再试"
  153. this.loading=false;
  154. this.$tip.alert(msg);
  155. }).finally(()=>{
  156. this.loading=false;
  157. })
  158. },
  159. saveClientId(){
  160. var info = plus.push.getClientInfo();
  161. var cid = info.clientid;
  162. this.$http.get("/sys/user/saveClientId",{params:{clientId:cid}}).then(res=>{
  163. console.log("res::saveClientId>",res)
  164. this.$tip.success('登录成功!')
  165. this.$Router.replaceAll({name:'index'})
  166. })
  167. },
  168. changePassword() {
  169. this.showPassword = !this.showPassword;
  170. },
  171. onSMSSend() {
  172. let smsParams = {};
  173. smsParams.mobile=this.phoneNo;
  174. smsParams.smsmode="0";
  175. let checkPhone = new RegExp(/^[1]([3-9])[0-9]{9}$/);
  176. if(!smsParams.mobile || smsParams.mobile.length==0){
  177. this.$tip.toast('请输入手机号');
  178. return false
  179. }
  180. if(!checkPhone.test(smsParams.mobile)){
  181. this.$tip.toast('请输入正确的手机号');
  182. return false
  183. }
  184. this.$http.post("/sys/sms",smsParams).then(res=>{
  185. if(res.data.success){
  186. this.smsCountDown = 60;
  187. this.startSMSTimer();
  188. }else{
  189. this.smsCountDown = 0;
  190. this.$tip.toast(res.data.message);
  191. }
  192. });
  193. },
  194. startSMSTimer() {
  195. this.smsCountInterval = setInterval(() => {
  196. this.smsCountDown--;
  197. if (this.smsCountDown <= 0) {
  198. clearInterval(this.smsCountInterval);
  199. }
  200. }, 1000);
  201. },
  202. onSMSLogin() {
  203. let checkPhone = new RegExp(/^[1]([3-9])[0-9]{9}$/);
  204. if(!this.phoneNo || this.phoneNo.length==0){
  205. this.$tip.toast('请填写手机号');
  206. return;
  207. }
  208. if(!checkPhone.test(this.phoneNo)){
  209. this.$tip.toast('请输入正确的手机号');
  210. return false
  211. }
  212. if(!this.smsCode || this.smsCode.length==0){
  213. this.$tip.toast('请填短信验证码');
  214. return;
  215. }
  216. let loginParams = {
  217. mobile:this.phoneNo,
  218. captcha:this.smsCode
  219. };
  220. this.PhoneLogin(loginParams).then((res) => {
  221. console.log("res====》",res)
  222. if(res.data.success){
  223. this.$tip.success('登录成功!')
  224. this.$Router.replaceAll({name:'index'})
  225. }else{
  226. this.$tip.error(res.data.message);
  227. }
  228. }).catch((err) => {
  229. let msg = ((err.response || {}).data || {}).message || err.data.message || "请求出现错误,请稍后再试"
  230. this.$tip.error(msg);
  231. });
  232. },
  233. loginSuccess() {
  234. // 登陆成功,重定向到主页
  235. this.$Router.replace({name:'index'})
  236. },
  237. requestFailed(err) {
  238. this.$message.warning("登录失败")
  239. },
  240. },
  241. beforeDestroy() {
  242. if (this.smsCountInterval) {
  243. clearInterval(this.smsCountInterval);
  244. }
  245. },
  246. }
  247. </script>
  248. <style>
  249. .login-paddingtop {
  250. padding-top: 100upx;
  251. }
  252. .zai-box {
  253. padding: 0 20upx;
  254. padding-top: 100upx;
  255. position: relative;
  256. }
  257. .zai-logo {
  258. width: 200upx;
  259. height: 150px;
  260. }
  261. .zai-title {
  262. font-size: 58upx;
  263. color: #000000;
  264. text-align: center;
  265. }
  266. .input-placeholder, .zai-input {
  267. color: #94afce;
  268. }
  269. .zai-label {
  270. padding: 60upx 0;
  271. text-align: center;
  272. font-size: 30upx;
  273. color: #a7b6d0;
  274. }
  275. .zai-btn {
  276. background: #ff65a3;
  277. color: #fff;
  278. border: 0;
  279. border-radius: 100upx;
  280. font-size: 36upx;
  281. }
  282. .zai-btn:after {
  283. border: 0;
  284. }
  285. /*按钮点击效果*/
  286. .zai-btn.button-hover {
  287. transform: translate(1upx, 1upx);
  288. }
  289. </style>