register.vue 9.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406
  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" 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" 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" 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;" v-show="isGet" @tap="getCode"
  37. 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. this.http.httpRequest('/wxapplet/ownersid/shortmessaging', 'get', {
  145. phoneNumBer: this.form.phone
  146. }, true).then((res) => {
  147. })
  148. }
  149. }
  150. },
  151. //重新获取验证码
  152. againGetCode() {
  153. this.getCode()
  154. },
  155. // 注册
  156. register() {
  157. // 判断输入框是否都有值 是可以点击注册 否不可以点击
  158. if (!this.form.name || !this.form.idNumber || !this.form.code || !this.form.phone) {
  159. return
  160. } else {
  161. 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]$/; //身份证正则
  162. let nameReg = /^[\u4E00-\u9FA5\uf900-\ufa2d·s]{2,20}$/
  163. if (!nameReg.test(this.form.name)) {
  164. uni.showToast({
  165. icon: 'none',
  166. title: '请输入正确的姓名格式',
  167. duration: 2000
  168. });
  169. }
  170. else if (!idNumerReg.test(this.form.idNumber)) {
  171. console.log(this.form.idNumber)
  172. uni.showToast({
  173. icon: 'none',
  174. title: '身份证号码格式不正确',
  175. duration: 2000
  176. });
  177. } else {
  178. uni.showLoading({
  179. mask: true,
  180. title: '加载中'
  181. })
  182. this.http.httpRequest('/wxapplet/ownersid/add', 'post', {
  183. loginName: this.form.name,
  184. idcardNum: this.form.idNumber,
  185. phoneNumBer: this.form.phone,
  186. authcode: this.form.code
  187. }, true).then((res) => {
  188. // 判断接口是否请求成功 0 成功 1 步成功
  189. if (res.code == 0) {
  190. uni.hideLoading()
  191. this.$refs.popup.open()
  192. } else {
  193. uni.hideLoading()
  194. uni.showToast({
  195. title: res.msg,
  196. icon: 'none'
  197. })
  198. // this.form.phone=''
  199. // this.form.code=''
  200. this.isShow = false
  201. this.isGet = true
  202. this.num = 0
  203. }
  204. }).catch(() => {
  205. uni.hideLoading()
  206. })
  207. }
  208. }
  209. }
  210. },
  211. }
  212. </script>
  213. <style>
  214. .getCode {
  215. color: rgba(163, 197, 237, 1);
  216. }
  217. .codeActive {
  218. color: rgba(41, 138, 253, 1);
  219. }
  220. .cx {
  221. color: rgba(163, 197, 237, 1);
  222. }
  223. .cxActive {
  224. color: rgba(41, 138, 253, 1);
  225. }
  226. .popupClose {
  227. width: 44rpx;
  228. height: 44rpx;
  229. position: absolute;
  230. right: 20rpx;
  231. top: 20rpx;
  232. }
  233. .popupBtn {
  234. width: 342rpx;
  235. height: 80rpx;
  236. position: absolute;
  237. bottom: 80rpx;
  238. left: 128rpx;
  239. background: rgba(41, 138, 253, 1);
  240. color: #FFFFFF;
  241. font-size: 32rpx;
  242. }
  243. .popupTitle {
  244. width: 260rpx;
  245. height: 40rpx;
  246. font-size: 28rpx;
  247. color: #999999;
  248. position: absolute;
  249. bottom: 232rpx;
  250. left: 170rpx;
  251. }
  252. .popupImage {
  253. width: 100%;
  254. height: 300rpx;
  255. /* background-image: url(../../static/success_popup@2x.png);
  256. position: absolute;
  257. top: -64rpx; */
  258. }
  259. .loginNow {
  260. width: 116rpx;
  261. height: 40rpx;
  262. font-size: 28rpx;
  263. color: #333333;
  264. margin: 0 auto;
  265. margin-top: 48rpx;
  266. }
  267. .info-btn {
  268. width: 342rpx;
  269. height: 88rpx;
  270. background: rgba(163, 197, 237, 1);
  271. opacity: 1;
  272. border-radius: 14rpx;
  273. font-size: 32rpx;
  274. text-align: center;
  275. line-height: 88rpx;
  276. color: rgba(255, 255, 255, 1);
  277. margin: 0 auto;
  278. margin-top: 44rpx;
  279. }
  280. .item-input {
  281. width: 100%;
  282. margin-left: 20rpx;
  283. height: 40rpx;
  284. /* margin-top: 5rpx; */
  285. font-size: 32rpx;
  286. color: #999999;
  287. color: #333333;
  288. opacity: 1;
  289. }
  290. .active {
  291. background: rgba(41, 138, 253, 1);
  292. }
  293. .left-icon {
  294. width: 40rpx;
  295. height: 40rpx;
  296. /* border: 1rpx solid #555555; */
  297. /* box-sizing: border-box; */
  298. }
  299. .item {
  300. display: flex;
  301. width: 531rpx;
  302. height: 59rpx;
  303. margin: 0 auto;
  304. border-bottom: 2px solid rgba(247, 247, 247, 1);
  305. opacity: 1;
  306. margin-top: 50rpx;
  307. }
  308. .info-box {
  309. width: 90%;
  310. margin: 0 auto;
  311. border: 1px solid #808080;
  312. }
  313. .info-title {
  314. width: 100%;
  315. height: 48rpx;
  316. font-size: 34rpx;
  317. text-align: center;
  318. line-height: 48rpx;
  319. font-family: PingFang SC;
  320. font-weight: bold;
  321. position: absolute;
  322. top: 30rpx;
  323. }
  324. .topType {
  325. width: 150rpx;
  326. height: 150rpx;
  327. border-radius: 50%;
  328. background: #FFFFFF;
  329. margin: 0 auto;
  330. margin-top: -50rpx;
  331. border: 1rpx solide #C0C0C0;
  332. }
  333. .navImage {}
  334. .info {
  335. width: 602rpx;
  336. height: 624rpx;
  337. background: rgba(255, 255, 255, 1);
  338. box-shadow: 0px 6px 30px rgba(41, 138, 253, 0.15);
  339. opacity: 1;
  340. position: absolute;
  341. top: 484rpx;
  342. left: 74rpx;
  343. border-radius: 20rpx;
  344. }
  345. .btn {
  346. width: 702rpx;
  347. height: 90rpx;
  348. background: rgba(41, 138, 253, 1);
  349. opacity: 1;
  350. border-radius: 18rpx;
  351. font-size: 32rpx;
  352. font-family: PingFang SC;
  353. color: rgba(255, 255, 255, 1);
  354. text-align: center;
  355. line-height: 90rpx;
  356. position: absolute;
  357. top: 990rpx;
  358. left: 27rpx;
  359. }
  360. .nvaTitle {
  361. position: absolute;
  362. text-align: center;
  363. max-width: 400rpx;
  364. overflow: hidden;
  365. top: 0;
  366. left: 0;
  367. bottom: 0;
  368. right: 0;
  369. font-size: 32rpx;
  370. margin: auto;
  371. }
  372. </style>