login.vue 6.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251
  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" @click="xieyi('user')">《用户协议》</text>
  28. <text class="fontYin">和</text>
  29. <text class="fontYin" style="color: #f83224" @click="xieyi('private')">《隐私协议》</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. xieyi(code) {
  53. uni.navigateTo({
  54. url: '/pageB/xieyi?code=' + code
  55. })
  56. },
  57. //微信登录
  58. tologin(e) {
  59. if (this.changea.length > 0) {
  60. if (e.detail.code) {
  61. var phoneCode = e.detail.code;
  62. uni.login({
  63. success: (code) => {
  64. uni.$u.http
  65. .post("/api/wxmini/login", {
  66. code: code.code,
  67. })
  68. .then((res) => {
  69. console.log(res);
  70. if (res == 10011) {
  71. uni.$u.http
  72. .post("/api/wxmini/mobile", {
  73. code: phoneCode,
  74. })
  75. .then((res) => {
  76. uni.$u.http
  77. .post("/api/register", {
  78. wx_code: code
  79. .code, // 是 String 微信登录时候的code
  80. mobile: res.mobile, // 是 String 手机号码
  81. })
  82. .then((res) => {
  83. console.log(res);
  84. uni.setStorageSync('user_no', res
  85. .easemob_username)
  86. uni.setStorageSync('pwd', res
  87. .easemob_password)
  88. var options = {
  89. user: res.easemob_username,
  90. pwd: res.easemob_password,
  91. appKey: conn.appkey,
  92. };
  93. conn.open(options);
  94. // conn.open({
  95. // user: res.easemob_username,
  96. // pwd: res.easemob_password,
  97. // appKey: conn.appkey
  98. // }).then(() => {
  99. // console.log('res');
  100. // }).catch(reason => {
  101. // console.log('失败', reason);
  102. // })
  103. uni.setStorageSync("token", res.token);
  104. uni.setStorageSync("openid", res
  105. .openid);
  106. uni.setStorageSync("user_info", res);
  107. setTimeout(() => {
  108. uni.navigateTo({
  109. url: "/pageA/changelange",
  110. });
  111. }, 300);
  112. })
  113. .catch(() => {});
  114. })
  115. .catch(() => {});
  116. } else {
  117. uni.setStorageSync("token", res.token);
  118. uni.setStorageSync("openid", res.openid);
  119. uni.setStorageSync("user_info", res);
  120. uni.setStorageSync('user_no', res
  121. .easemob_username)
  122. uni.setStorageSync('pwd', res
  123. .easemob_password)
  124. // var options = {
  125. // user: res.easemob_username,
  126. // pwd: res.easemob_password,
  127. // appKey: conn.appkey,
  128. // };
  129. // conn.open(options);
  130. conn.open({
  131. user: res.easemob_username,
  132. pwd: res.easemob_password,
  133. appKey: conn.appkey
  134. }).then(() => {
  135. console.log('res');
  136. }).catch(reason => {
  137. console.log('失败', reason);
  138. })
  139. setTimeout(() => {
  140. uni.navigateTo({
  141. url: "/pageA/changelange",
  142. });
  143. }, 300);
  144. }
  145. })
  146. .catch(() => {});
  147. },
  148. });
  149. }
  150. } else {
  151. this.$u.toast("请勾选隐私协议");
  152. }
  153. },
  154. checkboxChange(n) {
  155. console.log("change", n);
  156. this.changea = n;
  157. },
  158. submit() {
  159. // login({ mobile: "13000000000", password: "123456" }).then((res) => {
  160. // console.log(res);
  161. // if (res.data.code == 10000) {
  162. // uni.setStorage({
  163. // key: "token",
  164. // data: res.data.data.token,
  165. // success: function () {
  166. // uni.switchTab({
  167. // url: "../index/index",
  168. // });
  169. // },
  170. // });
  171. // }
  172. // });
  173. uni.$u.http
  174. .post("/api/login", {
  175. mobile: this.mobile,
  176. password: '123456',
  177. })
  178. .then((res) => {
  179. uni.setStorageSync("token", res.token);
  180. uni.setStorageSync("user_info", res);
  181. uni.setStorageSync('user_no', res.easemob_username)
  182. uni.setStorageSync('pwd', res.easemob_password)
  183. var options = {
  184. user: res.easemob_username,
  185. pwd: res.easemob_password,
  186. appKey: conn.appkey,
  187. success: function(res2) {
  188. console.log(res2);
  189. },
  190. error: function() {}
  191. };
  192. conn.open(options);
  193. uni.switchTab({
  194. url: "/pages/index/index",
  195. });
  196. })
  197. .catch((error) => {
  198. console.log(error);
  199. });
  200. },
  201. submita() {
  202. uni.$u.http
  203. .post("/api//mobile-register", {
  204. mobile: this.mobile,
  205. password: '123456',
  206. })
  207. .then((res) => {
  208. uni.$u.toast('注册成功')
  209. })
  210. .catch((error) => {
  211. console.log(error);
  212. });
  213. }
  214. },
  215. };
  216. </script>
  217. <style lang="scss" scoped>
  218. page {
  219. background-color: #ffffff !important;
  220. height: 100vh;
  221. }
  222. .login-btn {
  223. width: 662rpx;
  224. height: 96rpx;
  225. background: #f83224;
  226. box-shadow: 0rpx 16rpx 40rpx -12rpx rgba(255, 21, 21, 0.5);
  227. border-radius: 48rpx;
  228. font-family: PingFangSC, PingFang SC;
  229. font-weight: 500;
  230. font-size: 32rpx;
  231. color: #ffffff;
  232. line-height: 96rpx;
  233. text-align: center;
  234. font-style: normal;
  235. }
  236. .fontYin {
  237. font-family: PingFangSC, PingFang SC;
  238. font-weight: 400;
  239. font-size: 24rpx;
  240. color: #666666;
  241. line-height: 34rpx;
  242. text-align: left;
  243. font-style: normal;
  244. }
  245. </style>