iphoneLogin.vue 6.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358
  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('km66MiniApp/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. shopID:this.wxOpendata.shopID,
  131. }, ).then(res => {
  132. uni.hideLoading();
  133. if (res.code == 0) {
  134. uni.setStorage({
  135. key: 'logindata',
  136. data:true,
  137. success: function() {
  138. that.ipLogin()
  139. }
  140. });
  141. uni.showToast({
  142. title: '登录成功',
  143. icon: 'none',
  144. duration: 3000
  145. });
  146. /* uni.switchTab({
  147. url: '../homePage/homePage'
  148. }) */
  149. uni.navigateTo({
  150. url:'../index/index'
  151. })
  152. } else {
  153. uni.showToast({
  154. title: res.msg,
  155. icon: 'none',
  156. duration: 3000
  157. });
  158. }
  159. })
  160. },
  161. input(phone) {
  162. console.log(this.phone);
  163. if (this.phone != '') {
  164. this.isgreen = true;
  165. }
  166. },
  167. yzminput() {
  168. if (this.code != '' && this.phone != '') {
  169. this.show = true;
  170. }
  171. },
  172. sendSms() {
  173. if (!this.isYzm) {
  174. return false;
  175. }
  176. this.isYzm = false;
  177. //this.clearIntervalDjs();
  178. //return false;
  179. if (this.phone === '') {
  180. this.isYzm = true
  181. uni.showToast({
  182. title: '手机号不可为空',
  183. icon: 'none',
  184. duration: 3000
  185. });
  186. } else {
  187. var reg = /^1[3456789]\d{9}$/;
  188. if (!reg.test(this.phone)) {
  189. uni.showToast({
  190. title: '手机号格式不正确',
  191. icon: 'none',
  192. duration: 3000
  193. });
  194. this.isYzm = true
  195. } else {
  196. this.$http('km66MiniApp/sys/sendSms', {
  197. phone: this.phone,
  198. shopID:'1B43BADD-B670-4B27-B6C1-604523287EAF',
  199. }, 'GET').then(res => {
  200. this.isYzm = false;
  201. /* uni.showToast({
  202. title: '发送成功',
  203. icon:'none',
  204. duration: 3000
  205. }); */
  206. this.clearIntervalDjs()
  207. })
  208. }
  209. }
  210. },
  211. clearIntervalDjs() {
  212. const TIME_COUNT = 60;
  213. if (!this.timer) {
  214. this.cont = TIME_COUNT;
  215. this.isYzm = false;
  216. this.timer = setInterval(() => {
  217. if (this.cont > 0 && this.cont <= TIME_COUNT) {
  218. this.cont--;
  219. this.yzmTxt = this.cont + 'S'
  220. } else {
  221. this.isYzm = true;
  222. clearInterval(this.timer);
  223. this.timer = null;
  224. this.yzmTxt = "获取验证码"
  225. }
  226. }, 1000)
  227. }
  228. },
  229. privacyClick() {
  230. this.privacyCk = !this.privacyCk
  231. },
  232. blur1() {
  233. }
  234. }
  235. }
  236. </script>
  237. <style scoped>
  238. .tis {
  239. color: #333333;
  240. font-size: 44rpx;
  241. padding-top: 78rpx;
  242. padding-left: 58rpx;
  243. }
  244. .cont {
  245. padding: 58rpx;
  246. }
  247. .phoneInput {
  248. width: 604rpx;
  249. height: 88rpx;
  250. border-radius: 44rpx;
  251. border: 2rpx solid #EEEEEE;
  252. line-height: 88rpx;
  253. color: #333333;
  254. font-size: 30rpx;
  255. padding-left: 30rpx;
  256. }
  257. .yzmBox {
  258. width: 604rpx;
  259. height: 88rpx;
  260. border-radius: 44rpx;
  261. border: 2rpx solid #EEEEEE;
  262. line-height: 88rpx;
  263. color: #999999;
  264. font-size: 30rpx;
  265. padding-left: 30rpx;
  266. margin-top: 30rpx;
  267. display: flex;
  268. justify-content: space-between;
  269. }
  270. .yzmInput {
  271. line-height: 88rpx;
  272. color: #333333;
  273. font-size: 30rpx;
  274. height: 88rpx;
  275. }
  276. .yzmBtn {
  277. padding-right: 30rpx;
  278. border-left: 2rpx solid #EEEEEE;
  279. padding-left: 20rpx;
  280. height: 35rpx;
  281. line-height: 35rpx;
  282. margin-top: 26rpx;
  283. }
  284. .loginBtn {
  285. width: 634rpx;
  286. height: 88rpx;
  287. background: #F5F5F5;
  288. border-radius: 44rpx;
  289. line-height: 88rpx;
  290. text-align: center;
  291. margin-top: 30rpx;
  292. color: #999999;
  293. font-size: 30rpx;
  294. }
  295. .privacy {
  296. display: flex;
  297. /* justify-content: center; */
  298. font-size: 24rpx;
  299. color: #CCCCCC;
  300. padding-top: 34rpx;
  301. }
  302. .imgPrivacy {
  303. width: 28rpx;
  304. height: 28rpx;
  305. margin-top: 2rpx;
  306. margin-right: 10rpx;
  307. }
  308. .span1 {
  309. color: #FF4F00;
  310. }
  311. .nock {
  312. width: 22rpx;
  313. height: 22rpx;
  314. border-radius: 50%;
  315. border: 2px solid #AEAEAE;
  316. margin-top: 2rpx;
  317. margin-right: 10rpx;
  318. }
  319. .green {
  320. color: #FF4F00;
  321. }
  322. .okBtn {
  323. background: #FF4F00;
  324. color: #FFFFFF;
  325. }
  326. </style>