login.vue 4.1 KB

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