login.vue 6.8 KB

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