login.vue 6.8 KB

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