2023-1-16
This commit is contained in:
@@ -522,7 +522,8 @@
|
||||
// return;
|
||||
let params = {
|
||||
phone: this.phone,
|
||||
authCode: this.code
|
||||
authCode: this.code,
|
||||
cid: uni.getStorageSync('cid')
|
||||
};
|
||||
let data = await Api.apiCall('post', Api.index.loginByCode, params);
|
||||
//this.logining = false;
|
||||
@@ -548,8 +549,10 @@
|
||||
}
|
||||
let params = {
|
||||
phone: this.phone,
|
||||
password: this.password
|
||||
password: this.password,
|
||||
cid: uni.getStorageSync('cid')
|
||||
};
|
||||
console.log("params>>>>",params);
|
||||
let data = await Api.apiCall('post', Api.index.login, params);
|
||||
if (data) {
|
||||
console.log(data);
|
||||
|
||||
@@ -173,7 +173,8 @@
|
||||
|
||||
let params2 = {
|
||||
phone: this.phone,
|
||||
password: this.password
|
||||
password: this.password,
|
||||
cid: uni.getStorageSync('cid')
|
||||
};
|
||||
let data2 = await Api.apiCall('post', Api.index.login, params2);
|
||||
//this.logining = false;
|
||||
|
||||
Reference in New Issue
Block a user