iphoneLogin.vue 7.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353
  1. <template>
  2. <view class="container">
  3. <view class="tis">登录后更精彩</view>
  4. <view class="cont">
  5. <input type="number" value="" v-model="phone" placeholder-style="color:#999999" placeholder="请输入手机号码" class="phoneInput" @input="input()" />
  6. <view class="yzmBox">
  7. <input type="number" value="" v-model="code" placeholder-style="color:#999999" placeholder="请输入验证码" class="yzmInput"
  8. @input="yzminput()" />
  9. <view @click="sendSms" class="yzmBtn" :class="{green:isgreen}">{{yzmTxt}}</view>
  10. </view>
  11. <view class="loginBtn" :class="{okBtn:show}" @click="gologin">验证并登录</view>
  12. <view class="privacy" @click="privacyClick">
  13. <image src="../../static/img/login_icon_checked.png" mode="" class="imgPrivacy" v-show="privacyCk">
  14. </image>
  15. <view class="nock" v-show="!privacyCk"></view>
  16. <span>同意</span> <span class="span1" @click.stop="goTreaty">《服务协议》</span>
  17. <span></span> <span class="span1" @click.stop="goIntimity">《隐私政策》 </span>
  18. </view>
  19. </view>
  20. </view>
  21. </template>
  22. <script>
  23. export default {
  24. data() {
  25. return {
  26. privacyCk: true,
  27. phone: '',
  28. isYzm: true,
  29. yzmTxt: '获取验证码',
  30. isgreen: false,
  31. timer: null,
  32. show: false,
  33. cont: '',
  34. code: '',
  35. wxdata: '',
  36. wxCode: '',
  37. openID: '',
  38. wxOpendata: '',
  39. }
  40. },
  41. onLoad() {
  42. this.wxOpendata = uni.getStorageSync("wxOpendata");
  43. },
  44. methods: {
  45. goTreaty() {
  46. uni.navigateTo({
  47. url: '../me/treaty'
  48. })
  49. },
  50. goIntimity() {
  51. uni.navigateTo({
  52. url: '../me/intimity'
  53. })
  54. },
  55. getWxdata() {
  56. var that = this;
  57. uni.getUserProfile({
  58. lang: 'zh_CN',
  59. desc: '登录',
  60. success: (res) => {
  61. console.log(res);
  62. that.wxdata = res;
  63. uni.setStorage({
  64. key: 'wxdata',
  65. data: res,
  66. success: function() {
  67. that.ipLogin()
  68. }
  69. });
  70. },
  71. fail: (res) => {
  72. console.log(res)
  73. }
  74. });
  75. },
  76. gologin() {
  77. if (this.privacyCk == false) {
  78. uni.showToast({
  79. title: '您需要先同意相关服务协议与隐私政策',
  80. icon: 'none',
  81. duration: 3000
  82. });
  83. return
  84. }
  85. if (this.show) {
  86. if (this.wxOpendata) {
  87. this.openID = this.wxOpendata.openid;
  88. this.wxdata = uni.getStorageSync("wxdata")
  89. if (this.wxdata) {
  90. this.phoneLogin()
  91. } else {
  92. this.getWxdata()
  93. }
  94. } else {
  95. this.getWxdata()
  96. }
  97. }
  98. },
  99. ipLogin() {
  100. var that = this;
  101. uni.showLoading({
  102. title: '加载中'
  103. });
  104. uni.login({
  105. provider: 'weixin',
  106. success: function(loginRes) {
  107. console.log(loginRes)
  108. that.wxCode = loginRes.code
  109. that.getWxOpenID()
  110. }
  111. });
  112. },
  113. getWxOpenID() {
  114. this.$http('worldKeepCar/sys/getWxOpenID', {
  115. code: this.wxCode,
  116. }, 'GET').then(res => {
  117. //console.log(res)
  118. this.openID = res.data.openid;
  119. // console.log(this.openID)
  120. this.phoneLogin()
  121. })
  122. },
  123. phoneLogin() {
  124. this.$http('worldKeepCar/sys/phoneLogin', {
  125. phone: this.phone,
  126. code: this.code,
  127. nickName: this.wxdata.userInfo.nickName,
  128. headUrl: this.wxdata.userInfo.avatarUrl,
  129. openID: this.openID,
  130. }, ).then(res => {
  131. uni.hideLoading();
  132. if (res.code == 0) {
  133. uni.setStorage({
  134. key: 'logodata',
  135. data: res.data,
  136. success: function() {
  137. that.ipLogin()
  138. }
  139. });
  140. uni.showToast({
  141. title: '登录成功',
  142. icon: 'none',
  143. duration: 3000
  144. });
  145. uni.switchTab({
  146. url: '../index/index'
  147. })
  148. } else {
  149. uni.showToast({
  150. title: res.msg,
  151. icon: 'none',
  152. duration: 3000
  153. });
  154. }
  155. })
  156. },
  157. input(phone) {
  158. console.log(this.phone);
  159. if (this.phone != '') {
  160. this.isgreen = true;
  161. }
  162. },
  163. yzminput() {
  164. if (this.code != '' && this.phone != '') {
  165. this.show = true;
  166. }
  167. },
  168. sendSms() {
  169. if (!this.isYzm) {
  170. return false;
  171. }
  172. this.isYzm = false;
  173. //this.clearIntervalDjs();
  174. //return false;
  175. if (this.phone === '') {
  176. this.isYzm = true
  177. uni.showToast({
  178. title: '手机号不可为空',
  179. icon: 'none',
  180. duration: 3000
  181. });
  182. } else {
  183. var reg = /^1[3456789]\d{9}$/;
  184. if (!reg.test(this.phone)) {
  185. uni.showToast({
  186. title: '手机号格式不正确',
  187. icon: 'none',
  188. duration: 3000
  189. });
  190. this.isYzm = true
  191. } else {
  192. this.$http('worldKeepCar/sys/sendSms', {
  193. phone: this.phone,
  194. }, 'GET').then(res => {
  195. this.isYzm = false;
  196. /* uni.showToast({
  197. title: '发送成功',
  198. icon:'none',
  199. duration: 3000
  200. }); */
  201. this.clearIntervalDjs()
  202. })
  203. }
  204. }
  205. },
  206. clearIntervalDjs() {
  207. const TIME_COUNT = 60;
  208. if (!this.timer) {
  209. this.cont = TIME_COUNT;
  210. this.isYzm = false;
  211. this.timer = setInterval(() => {
  212. if (this.cont > 0 && this.cont <= TIME_COUNT) {
  213. this.cont--;
  214. this.yzmTxt = this.cont + 'S'
  215. } else {
  216. this.isYzm = true;
  217. clearInterval(this.timer);
  218. this.timer = null;
  219. this.yzmTxt = "获取验证码"
  220. }
  221. }, 1000)
  222. }
  223. },
  224. privacyClick() {
  225. this.privacyCk = !this.privacyCk
  226. },
  227. blur1() {
  228. }
  229. }
  230. }
  231. </script>
  232. <style scoped>
  233. .tis {
  234. color: #333333;
  235. font-size: 44rpx;
  236. padding-top: 78rpx;
  237. padding-left: 58rpx;
  238. }
  239. .cont {
  240. padding: 58rpx;
  241. }
  242. .phoneInput {
  243. width: 604rpx;
  244. height: 88rpx;
  245. border-radius: 44rpx;
  246. border: 2rpx solid #EEEEEE;
  247. line-height: 88rpx;
  248. color: #333333;
  249. font-size: 30rpx;
  250. padding-left: 30rpx;
  251. }
  252. .yzmBox {
  253. width: 604rpx;
  254. height: 88rpx;
  255. border-radius: 44rpx;
  256. border: 2rpx solid #EEEEEE;
  257. line-height: 88rpx;
  258. color: #999999;
  259. font-size: 30rpx;
  260. padding-left: 30rpx;
  261. margin-top: 30rpx;
  262. display: flex;
  263. justify-content: space-between;
  264. }
  265. .yzmInput {
  266. line-height: 88rpx;
  267. color: #333333;
  268. font-size: 30rpx;
  269. height: 88rpx;
  270. }
  271. .yzmBtn {
  272. padding-right: 30rpx;
  273. border-left: 2rpx solid #EEEEEE;
  274. padding-left: 20rpx;
  275. height: 35rpx;
  276. line-height: 35rpx;
  277. margin-top: 26rpx;
  278. }
  279. .loginBtn {
  280. width: 634rpx;
  281. height: 88rpx;
  282. background: #F5F5F5;
  283. border-radius: 44rpx;
  284. line-height: 88rpx;
  285. text-align: center;
  286. margin-top: 30rpx;
  287. color: #999999;
  288. font-size: 30rpx;
  289. }
  290. .privacy {
  291. display: flex;
  292. /* justify-content: center; */
  293. font-size: 24rpx;
  294. color: #CCCCCC;
  295. padding-top: 34rpx;
  296. }
  297. .imgPrivacy {
  298. width: 28rpx;
  299. height: 28rpx;
  300. margin-top: 2rpx;
  301. margin-right: 10rpx;
  302. }
  303. .span1 {
  304. color: #FF4F00;
  305. }
  306. .nock {
  307. width: 22rpx;
  308. height: 22rpx;
  309. border-radius: 50%;
  310. border: 2px solid #AEAEAE;
  311. margin-top: 2rpx;
  312. margin-right: 10rpx;
  313. }
  314. .green {
  315. color: #FF4F00;
  316. }
  317. .okBtn {
  318. background: #FF4F00;
  319. color: #FFFFFF;
  320. }
  321. </style>