login.vue 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230
  1. <template>
  2. <!-- 登录 -->
  3. <view
  4. style="
  5. padding: 0 44rpx;
  6. background-color: #fff;
  7. height: 100vh;
  8. overflow: hidden;
  9. "
  10. >
  11. <view class="" style="text-align: center; margin-top: 156rpx">
  12. <image
  13. src="../../static/images/logo.png"
  14. style="width: 350rpx; height: 350rpx"
  15. mode=""
  16. ></image>
  17. </view>
  18. <button
  19. open-type="getPhoneNumber"
  20. class="login-btn"
  21. @getphonenumber="tologin"
  22. >
  23. 微信授权登录
  24. </button>
  25. <view>
  26. <u--input placeholder="请输入内容" border="surround" v-model="mobile"></u--input>
  27. <u--input placeholder="请输入内容" border="surround" v-model="code"></u--input>
  28. </view>
  29. <button @click="submit">登录</button>
  30. <button @click="submita">注册</button>
  31. <view class="" style="margin-top: 42rpx; display: flex">
  32. <u-checkbox-group v-model="checkboxValue1" placement="column" @change="checkboxChange">
  33. <u-checkbox shape="circle" :customStyle="{ marginBottom: '8px' }" :name="1">
  34. </u-checkbox>
  35. </u-checkbox-group>
  36. <text class="fontYin">我已阅读并同意</text>
  37. <text class="fontYin" style="color: #f83224">《用户协议》</text>
  38. <text class="fontYin">和</text>
  39. <text class="fontYin" style="color: #f83224">《隐私协议》</text>
  40. </view>
  41. </view>
  42. </template>
  43. <script>
  44. // import {conn} from '@/utils/WebIM.js'
  45. import {conn} from '../../utils/WebIM.js'
  46. import {
  47. login
  48. } from "../../network/api/homeApi.js";
  49. export default {
  50. data() {
  51. return {
  52. mobile: "",
  53. code: "",
  54. checkboxValue1: false,
  55. changea: [],
  56. };
  57. },
  58. methods: {
  59. //微信登录
  60. tologin(e) {
  61. if (this.changea.length > 0) {
  62. if (e.detail.code) {
  63. var phoneCode = e.detail.code;
  64. uni.login({
  65. success: (code) => {
  66. uni.$u.http
  67. .post("/api/wxmini/login", {
  68. code: code.code,
  69. })
  70. .then((res) => {
  71. console.log(res);
  72. if (res == 10011) {
  73. uni.$u.http
  74. .post("/api/wxmini/mobile", {
  75. code: phoneCode,
  76. })
  77. .then((res) => {
  78. uni.$u.http
  79. .post("/api/register", {
  80. wx_code: code
  81. .code, // 是 String 微信登录时候的code
  82. mobile: res.mobile, // 是 String 手机号码
  83. })
  84. .then((res) => {
  85. console.log(res);
  86. uni.setStorageSync('user_no',res.easemob_username)
  87. uni.setStorageSync('pwd',res.easemob_password)
  88. var options = {
  89. user: res.easemob_username,
  90. pwd: res.easemob_password,
  91. appKey: conn.appkey,
  92. success: function (res2) {
  93. },
  94. error: function(){
  95. }
  96. };
  97. conn.open(options);
  98. uni.setStorageSync("token", res.token);
  99. uni.setStorageSync("openid", res
  100. .openid);
  101. uni.setStorageSync("user_info", res);
  102. setTimeout(() => {
  103. uni.navigateTo({
  104. url: "/pageA/changelange",
  105. });
  106. }, 300);
  107. })
  108. .catch(() => {});
  109. })
  110. .catch(() => {});
  111. } else {
  112. uni.setStorageSync("token", res.token);
  113. uni.setStorageSync("openid", res.openid);
  114. uni.setStorageSync("user_info", res);
  115. setTimeout(() => {
  116. uni.navigateTo({
  117. url: "/pageA/changelange",
  118. });
  119. }, 300);
  120. }
  121. })
  122. .catch(() => {});
  123. },
  124. });
  125. }
  126. } else {
  127. this.$u.toast("请勾选隐私协议");
  128. }
  129. },
  130. checkboxChange(n) {
  131. console.log("change", n);
  132. this.changea = n;
  133. },
  134. submit() {
  135. // login({ mobile: "13000000000", password: "123456" }).then((res) => {
  136. // console.log(res);
  137. // if (res.data.code == 10000) {
  138. // uni.setStorage({
  139. // key: "token",
  140. // data: res.data.data.token,
  141. // success: function () {
  142. // uni.switchTab({
  143. // url: "../index/index",
  144. // });
  145. // },
  146. // });
  147. // }
  148. // });
  149. uni.$u.http
  150. .post("/api/login", {
  151. mobile: this.mobile,
  152. password: '123456',
  153. })
  154. .then((res) => {
  155. uni.setStorageSync("token", res.token);
  156. uni.setStorageSync("user_info", res);
  157. uni.setStorageSync('user_no',res.easemob_username)
  158. uni.setStorageSync('pwd',res.easemob_password)
  159. var options = {
  160. user: res.easemob_username,
  161. pwd: res.easemob_password,
  162. appKey: conn.appkey,
  163. success: function (res2) {
  164. console.log(res2);
  165. },
  166. error: function(){
  167. }
  168. };
  169. conn.open(options);
  170. uni.switchTab({
  171. url: "/pages/index/index",
  172. });
  173. })
  174. .catch((error) => {
  175. console.log(error);
  176. });
  177. },
  178. submita() {
  179. uni.$u.http
  180. .post("/api//mobile-register", {
  181. mobile: this.mobile,
  182. password: '123456',
  183. })
  184. .then((res) => {
  185. uni.$u.toast('注册成功')
  186. })
  187. .catch((error) => {
  188. console.log(error);
  189. });
  190. }
  191. },
  192. };
  193. </script>
  194. <style lang="scss" scoped>
  195. page {
  196. background-color: #ffffff !important;
  197. height: 100vh;
  198. }
  199. .login-btn {
  200. width: 662rpx;
  201. height: 96rpx;
  202. background: #f83224;
  203. box-shadow: 0rpx 16rpx 40rpx -12rpx rgba(255, 21, 21, 0.5);
  204. border-radius: 48rpx;
  205. font-family: PingFangSC, PingFang SC;
  206. font-weight: 500;
  207. font-size: 32rpx;
  208. color: #ffffff;
  209. line-height: 96rpx;
  210. text-align: center;
  211. font-style: normal;
  212. }
  213. .fontYin {
  214. font-family: PingFangSC, PingFang SC;
  215. font-weight: 400;
  216. font-size: 24rpx;
  217. color: #666666;
  218. line-height: 34rpx;
  219. text-align: left;
  220. font-style: normal;
  221. }
  222. </style>