login.vue 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227
  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. // setTimeout(() => {
  102. // uni.navigateTo({
  103. // url: "/pageA/changelange",
  104. // });
  105. // }, 300);
  106. })
  107. .catch(() => {});
  108. })
  109. .catch(() => {});
  110. } else {
  111. uni.setStorageSync("token", res.token);
  112. uni.setStorageSync("openid", res.openid);
  113. setTimeout(() => {
  114. uni.navigateTo({
  115. url: "/pageA/changelange",
  116. });
  117. }, 300);
  118. }
  119. })
  120. .catch(() => {});
  121. },
  122. });
  123. }
  124. } else {
  125. this.$u.toast("请勾选隐私协议");
  126. }
  127. },
  128. checkboxChange(n) {
  129. console.log("change", n);
  130. this.changea = n;
  131. },
  132. submit() {
  133. // login({ mobile: "13000000000", password: "123456" }).then((res) => {
  134. // console.log(res);
  135. // if (res.data.code == 10000) {
  136. // uni.setStorage({
  137. // key: "token",
  138. // data: res.data.data.token,
  139. // success: function () {
  140. // uni.switchTab({
  141. // url: "../index/index",
  142. // });
  143. // },
  144. // });
  145. // }
  146. // });
  147. uni.$u.http
  148. .post("/api/login", {
  149. mobile: this.mobile,
  150. password: '123456',
  151. })
  152. .then((res) => {
  153. uni.setStorageSync("token", res.token);
  154. uni.setStorageSync('user_no',res.easemob_username)
  155. uni.setStorageSync('pwd',res.easemob_password)
  156. var options = {
  157. user: res.easemob_username,
  158. pwd: res.easemob_password,
  159. appKey: conn.appkey,
  160. success: function (res2) {
  161. console.log(res2);
  162. },
  163. error: function(){
  164. }
  165. };
  166. conn.open(options);
  167. // uni.switchTab({
  168. // url: "/pages/index/index",
  169. // });
  170. })
  171. .catch((error) => {
  172. console.log(error);
  173. });
  174. },
  175. submita() {
  176. uni.$u.http
  177. .post("/api//mobile-register", {
  178. mobile: this.mobile,
  179. password: '123456',
  180. })
  181. .then((res) => {
  182. uni.$u.toast('注册成功')
  183. })
  184. .catch((error) => {
  185. console.log(error);
  186. });
  187. }
  188. },
  189. };
  190. </script>
  191. <style lang="scss" scoped>
  192. page {
  193. background-color: #ffffff !important;
  194. height: 100vh;
  195. }
  196. .login-btn {
  197. width: 662rpx;
  198. height: 96rpx;
  199. background: #f83224;
  200. box-shadow: 0rpx 16rpx 40rpx -12rpx rgba(255, 21, 21, 0.5);
  201. border-radius: 48rpx;
  202. font-family: PingFangSC, PingFang SC;
  203. font-weight: 500;
  204. font-size: 32rpx;
  205. color: #ffffff;
  206. line-height: 96rpx;
  207. text-align: center;
  208. font-style: normal;
  209. }
  210. .fontYin {
  211. font-family: PingFangSC, PingFang SC;
  212. font-weight: 400;
  213. font-size: 24rpx;
  214. color: #666666;
  215. line-height: 34rpx;
  216. text-align: left;
  217. font-style: normal;
  218. }
  219. </style>