login.vue 7.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329
  1. <template>
  2. <view>
  3. <view style="width:100%;height:516rpx;position: relative;">
  4. <view class="navImage">
  5. <image src="../../static/login_bgground@2x.png" style="width:100%;height:516rpx;"></image>
  6. </view>
  7. <!-- <view style="color:#fff;" class="nvaTitle">访客密码</view> -->
  8. </view>
  9. <view>
  10. <view class="info">
  11. <view class="topType"></view>
  12. <view class="info-title">登录</view>
  13. <view class="item">
  14. <view class="left-icon">
  15. <image src="../../static/login_icon_phone@2x.png" style="width: 100%;height: 100%;"></image>
  16. </view>
  17. <input class="uni-input item-input" v-model="form.phone" focus type="number" placeholder="请输入手机号" @input="changePhone" />
  18. </view>
  19. <view class="item">
  20. <view class="left-icon">
  21. <image src="../../static/login_icon_code@2x.png" style="width: 100%;height: 100%;"></image>
  22. </view>
  23. <input class="uni-input item-input" style="width:190rpx;" v-model="form.code" type="number" placeholder="请输入验证码" />
  24. <view style="margin-left: 150rpx;font-size: 24rpx;text-align: center;line-height: 40rpx;" v-show="isGet" @tap="getCode"
  25. class="getCode" :class="{codeActive:phoneLength==11}">获取验证码</view>
  26. <view v-show="isShow" @tap="againGetCode" style="width: 160rpx; margin-left: 116rpx;font-size: 24rpx;text-align: center;line-height: 45rpx;color:rgba(41,138,253,1);"><text
  27. class="cx" :class="{cxActive:num==0}">重新获取</text><text v-show="num>0">({{num}}s)</text>
  28. </view>
  29. </view>
  30. <!--注册按钮 -->
  31. <button class="info-btn" @tap="login" :class="{active: form.phone && form.code}" :loading="isLoading">
  32. 登录
  33. </button>
  34. <view class="regiter" @tap="register">注册</view>
  35. </view>
  36. </view>
  37. </view>
  38. </template>
  39. <script>
  40. export default {
  41. data() {
  42. return {
  43. isLoading:false,
  44. phoneLength: 0, //手机号的长度
  45. isShow: false, //判断是否显示重新获取
  46. isGet: true, //判断是否显示获取验证码
  47. // 倒计时数字
  48. num: 0,
  49. // 倒计时
  50. timer: null,
  51. //表单绑定值
  52. form: {
  53. name: '', //姓名
  54. idNumber: '', //身份证号
  55. phone: '', //手机号
  56. code: '', //验证码
  57. }
  58. }
  59. },
  60. created() {
  61. let id = uni.getStorageSync('userId')
  62. let name =uni.getStorageSync('createBy')
  63. // 判断当前用户是否已经登录过是 直接跳到首页 否 需要登录
  64. if(id && name){
  65. uni.switchTab({
  66. url:'../index/index'
  67. })
  68. }else{
  69. if(id){
  70. uni.navigateTo({
  71. url:'./authorization'
  72. })
  73. }else{
  74. }
  75. }
  76. },
  77. methods: {
  78. // 监听输入手机号码的长度
  79. changePhone() {
  80. this.phoneLength = this.form.phone.length
  81. },
  82. // 注册
  83. register() {
  84. uni.navigateTo({
  85. url: "../register/register"
  86. })
  87. },
  88. // 获取验证码
  89. getCode() {
  90. if (this.phoneLength != 11) {
  91. return
  92. } else {
  93. let phoneReg = /^1[3|4|5|7|8][0-9]{9}$/; //手机号正则校验
  94. if (phoneReg.test(this.form.phone)) {
  95. this.isShow = true
  96. this.isGet = false
  97. const TIME_COUNT = 60;
  98. // 判断当前timer是否有值
  99. if (!this.timer) {
  100. this.num = TIME_COUNT;
  101. this.show = false;
  102. this.timer = setInterval(() => {
  103. // 判断当前num值大于0并且小于等于60执行
  104. if (this.num > 0 && this.num <= TIME_COUNT) {
  105. this.num--;
  106. } else {
  107. //否则就清除定时
  108. clearInterval(this.timer);
  109. this.timer = null;
  110. this.num = 0
  111. }
  112. }, 1000)
  113. }
  114. this.http.httpRequest('/wxapplet/ownersid/shortmessaging', 'get', {
  115. phoneNumBer: this.form.phone
  116. }, true).then((res) => {})
  117. } else {
  118. uni.showToast({
  119. "icon": "none",
  120. title: "请输入正确手机号码格式"
  121. })
  122. }
  123. }
  124. },
  125. //重新获取验证码
  126. againGetCode() {
  127. if (this.num == 0) {
  128. this.getCode()
  129. } else {
  130. return
  131. }
  132. },
  133. // 登录
  134. login() {
  135. // 判断输入框是否都有值 是可以点击注册 否不可以点击
  136. if (!this.form.code || !this.form.phone) {
  137. return
  138. } else {
  139. this.isLoading=true
  140. this.http.httpRequest('/wxapplet/ownersid/login', 'post', {
  141. phoneNumBer: this.form.phone,
  142. loginType: '2',
  143. passWord: this.form.code
  144. }, true).then((res) => {
  145. // 判断是否登陆成功
  146. if (res.code == 0) {
  147. this.isLoading=false
  148. console.log(res)
  149. uni.setStorageSync('userId',res.data[0].userId)
  150. uni.setStorageSync('idNumber',res.data[0].idcardNum)
  151. uni.setStorageSync('phoneNumber',res.data[0].phoneNumBer)
  152. uni.navigateTo({
  153. url: '../authentication/city'
  154. })
  155. } else {
  156. this.isLoading=false
  157. uni.showToast({
  158. title: res.msg,
  159. 'icon': 'none'
  160. })
  161. }
  162. }).catch(()=>{
  163. this.isLoading=false
  164. })
  165. }
  166. }
  167. }
  168. }
  169. </script>
  170. <style>
  171. .getCode {
  172. color: rgba(163, 197, 237, 1);
  173. }
  174. .codeActive {
  175. color: rgba(41, 138, 253, 1);
  176. }
  177. .cx {
  178. color: rgba(163, 197, 237, 1);
  179. }
  180. .cxActive {
  181. color: rgba(41, 138, 253, 1);
  182. }
  183. .regiter {
  184. width: 56rpx;
  185. height: 40rpx;
  186. font-size: 28rpx;
  187. font-family: PingFang SC;
  188. font-weight: 400;
  189. line-height: 40rpx;
  190. color: rgba(51, 51, 51, 1);
  191. margin: 0 auto;
  192. margin-top: 92rpx;
  193. }
  194. .loginNow {
  195. width: 116rpx;
  196. height: 40rpx;
  197. font-size: 28rpx;
  198. color: #333333;
  199. margin: 0 auto;
  200. margin-top: 48rpx;
  201. }
  202. .info-btn {
  203. width: 342rpx;
  204. height: 88rpx;
  205. background: rgba(163, 197, 237, 1);
  206. opacity: 1;
  207. border-radius: 14rpx;
  208. font-size: 32rpx;
  209. text-align: center;
  210. line-height: 88rpx;
  211. color: rgba(255, 255, 255, 1);
  212. margin: 0 auto;
  213. margin-top: 88rpx;
  214. }
  215. .item-input {
  216. width: 100%;
  217. margin-left: 20rpx;
  218. height: 40rpx;
  219. /* margin-top: 5rpx; */
  220. font-size: 32rpx;
  221. color: #999999;
  222. color: #333333;
  223. opacity: 1;
  224. }
  225. .active {
  226. background: rgba(41, 138, 253, 1);
  227. }
  228. .left-icon {
  229. width: 40rpx;
  230. height: 40rpx;
  231. /* border: 1rpx solid #555555; */
  232. /* box-sizing: border-box; */
  233. }
  234. .item {
  235. display: flex;
  236. width: 531rpx;
  237. height: 59rpx;
  238. margin: 0 auto;
  239. border-bottom: 2px solid rgba(247, 247, 247, 1);
  240. opacity: 1;
  241. margin-top: 50rpx;
  242. }
  243. .info-box {
  244. width: 90%;
  245. margin: 0 auto;
  246. border: 1px solid #808080;
  247. }
  248. .info-title {
  249. width: 100%;
  250. height: 48rpx;
  251. font-size: 34rpx;
  252. text-align: center;
  253. line-height: 48rpx;
  254. font-family: PingFang SC;
  255. font-weight: bold;
  256. position: absolute;
  257. top: 30rpx;
  258. }
  259. .topType {
  260. width: 150rpx;
  261. height: 150rpx;
  262. border-radius: 50%;
  263. background: #FFFFFF;
  264. margin: 0 auto;
  265. margin-top: -50rpx;
  266. border: 1rpx solide #C0C0C0;
  267. }
  268. .navImage {}
  269. .info {
  270. width: 602rpx;
  271. height: 458rpx;
  272. background: rgba(255, 255, 255, 1);
  273. box-shadow: 0px 6px 30px rgba(41, 138, 253, 0.15);
  274. opacity: 1;
  275. position: absolute;
  276. top: 484rpx;
  277. left: 74rpx;
  278. border-radius: 20rpx;
  279. }
  280. .btn {
  281. width: 702rpx;
  282. height: 90rpx;
  283. background: rgba(41, 138, 253, 1);
  284. opacity: 1;
  285. border-radius: 18rpx;
  286. font-size: 32rpx;
  287. font-family: PingFang SC;
  288. color: rgba(255, 255, 255, 1);
  289. text-align: center;
  290. line-height: 90rpx;
  291. position: absolute;
  292. top: 990rpx;
  293. left: 27rpx;
  294. }
  295. .nvaTitle {
  296. position: absolute;
  297. text-align: center;
  298. max-width: 400rpx;
  299. overflow: hidden;
  300. top: 0;
  301. left: 0;
  302. bottom: 0;
  303. right: 0;
  304. font-size: 32rpx;
  305. margin: auto;
  306. }
  307. </style>