login.vue 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179
  1. <template>
  2. <view class="login u-flex-col u-col-center">
  3. <image src="../../static/logo..png" class="logo" mode=""></image>
  4. <text class="text">房屋底价超市</text>
  5. <!-- #ifdef MP-WEIXIN-->
  6. <button open-type="getPhoneNumber" class="login-btn" @getphonenumber="tologin">
  7. 用户一键登录
  8. </button>
  9. <!-- #endif -->
  10. <!-- #ifdef MP-TOUTIAO -->
  11. <button open-type="getPhoneNumber" class="login-btn" @getphonenumber="tologin1">
  12. 抖音授权登录
  13. </button>
  14. <!-- #endif -->
  15. </view>
  16. </template>
  17. <script>
  18. import {
  19. mapState
  20. } from "vuex"
  21. export default {
  22. data() {
  23. return {
  24. phone: '',
  25. pwd: ''
  26. }
  27. },
  28. onLoad() {
  29. },
  30. computed: {
  31. ...mapState(['config', 'defaultcity'])
  32. },
  33. methods: {
  34. setcity() {
  35. this.$u.post('/api/Index/location', {
  36. longitude: this.defaultcity.userLocation.split(',')[0],
  37. latitude: this.defaultcity.userLocation.split(',')[1],
  38. city_name: this.defaultcity.city
  39. })
  40. },
  41. tologin(e) {
  42. if (e.detail.code) {
  43. var phoneCode = e.detail.code
  44. uni.login({
  45. success: (code) => {
  46. this.$u.post('/api/Login/login', {
  47. code: code.code,
  48. program_num:2
  49. }).then(res => {
  50. if (res.code == 1) {
  51. uni.setStorageSync("token", res.data.token)
  52. if (!res.data.phone || 1) {
  53. this.$u.post('/api/Member/bind_Phone', {
  54. code: phoneCode,
  55. program_num:2
  56. }).then(res => {
  57. if (res.code == 1) {
  58. this.$u.toast("登录成功")
  59. this.$u.post('/api/Member/member_info').then(
  60. res => {
  61. uni.setStorageSync("hx_username",
  62. res.data.hx_username)
  63. this.$WebIM.conn.open({
  64. user: res.data.hx_username,
  65. pwd: "888888",
  66. }).then(() => {
  67. console.log(
  68. "login success"
  69. );
  70. }).catch((reason) => {
  71. console.log(
  72. "login fail",
  73. reason);
  74. });
  75. })
  76. this.setcity()
  77. setTimeout(() => {
  78. uni.navigateBack()
  79. }, 800)
  80. } else {
  81. this.$u.toast(res.msg)
  82. uni.removeStorageSync('token')
  83. }
  84. })
  85. } else {
  86. this.$u.toast("登录成功")
  87. this.setcity()
  88. setTimeout(() => {
  89. uni.navigateBack()
  90. }, 800)
  91. }
  92. } else {
  93. this.$u.toast(res.msg)
  94. }
  95. })
  96. }
  97. })
  98. }
  99. },
  100. tologin1() {
  101. tt.login({
  102. success: (code) => {
  103. this.$u.post('/api/Login/tou_login', {
  104. code: code.code
  105. }).then(res => {
  106. if (res.code == 1) {
  107. uni.setStorageSync("token", res.data.token)
  108. this.$u.toast("登录成功")
  109. this.$u.post('/api/Member/member_info').then(
  110. res => {
  111. uni.setStorageSync("hx_username", res.data.hx_username)
  112. this.$WebIM.conn.open({
  113. user: res.data.hx_username,
  114. pwd: "888888",
  115. }).then(() => {
  116. console.log(
  117. "login success");
  118. }).catch((reason) => {
  119. console.log("login fail",
  120. reason);
  121. });
  122. })
  123. this.setcity()
  124. setTimeout(() => {
  125. uni.navigateBack()
  126. }, 800)
  127. // }
  128. } else {
  129. this.$u.toast(res.msg)
  130. }
  131. })
  132. }
  133. })
  134. }
  135. }
  136. }
  137. </script>
  138. <style lang="scss">
  139. .login {
  140. .login-btn {
  141. width: 470rpx;
  142. line-height: 88rpx;
  143. background: #1F7EFF;
  144. border-radius: 20rpx;
  145. text-align: center;
  146. font-size: 28rpx;
  147. font-family: PingFangSC-Medium, PingFang SC;
  148. font-weight: 500;
  149. color: #FFFFFF;
  150. margin: 0 0 20rpx 0;
  151. padding: 0;
  152. }
  153. .logo {
  154. width: 200rpx;
  155. height: 200rpx;
  156. border-radius: 100rpx;
  157. margin-top: 280rpx;
  158. margin-bottom: 54rpx;
  159. }
  160. .text {
  161. color: #1F7EFF;
  162. font-size: 60rpx;
  163. letter-spacing: 10rpx;
  164. font-weight: 500;
  165. margin-bottom: 184rpx;
  166. }
  167. .login-btn::after {
  168. border: none;
  169. }
  170. }
  171. </style>