register.vue 8.4 KB

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