login.vue 6.1 KB

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