hookehuyr

🐞 fix(登录模块): 登录需要正常发送验证码

...@@ -11,4 +11,4 @@ VITE_OPENID = oJLZq5t9PIKLW9tm1oSUNAuPwssA ...@@ -11,4 +11,4 @@ VITE_OPENID = oJLZq5t9PIKLW9tm1oSUNAuPwssA
11 VITE_ID = 13761653761 11 VITE_ID = 13761653761
12 12
13 # 验证码 13 # 验证码
14 -VITE_PIN = 8888 14 +VITE_PIN =
......
1 /* 1 /*
2 * @Date: 2022-06-17 15:03:03 2 * @Date: 2022-06-17 15:03:03
3 * @LastEditors: hookehuyr hookehuyr@gmail.com 3 * @LastEditors: hookehuyr hookehuyr@gmail.com
4 - * @LastEditTime: 2022-06-17 22:44:30 4 + * @LastEditTime: 2022-06-20 09:59:50
5 * @FilePath: /tswj/src/api/B/login.js 5 * @FilePath: /tswj/src/api/B/login.js
6 * @Description: 文件描述 6 * @Description: 文件描述
7 */ 7 */
...@@ -17,7 +17,7 @@ const Api = { ...@@ -17,7 +17,7 @@ const Api = {
17 * @param {*} phone 手机号 17 * @param {*} phone 手机号
18 * @param {*} pin 验证码 18 * @param {*} pin 验证码
19 */ 19 */
20 -export const bLoginAPI = (params) => fn(fetch.get(Api.B_LOGIN, params)); 20 +export const bLoginAPI = (params) => fn(fetch.post(Api.B_LOGIN, params));
21 21
22 /** 22 /**
23 * @description 登出接口 23 * @description 登出接口
......