|
@@ -12,25 +12,29 @@ import logo from "../../static/logo-back.svg";
|
|
|
import { loginChat } from "../../loginChat";
|
|
|
const privateAgree = ref(false);
|
|
|
const inputValue = ref("");
|
|
|
+
|
|
|
+const userSigs = ref();
|
|
|
onLoad((options) => {
|
|
|
let personId = getQueryString("personId");
|
|
|
let type = getQueryString("type");
|
|
|
let openid = getQueryString("openid");
|
|
|
// 获取跳转的token和userId
|
|
|
-
|
|
|
let token = getQueryString("token");
|
|
|
let id = getQueryString("id");
|
|
|
-
|
|
|
uni.setStorageSync("personId", personId);
|
|
|
uni.setStorageSync("type", type);
|
|
|
uni.setStorageSync("token", token);
|
|
|
uni.setStorageSync("userId", id);
|
|
|
uni.setStorageSync("openid", openid);
|
|
|
+ let userSig = getQueryString("userSig");
|
|
|
+ uni.setStorageSync("userSig", userSig);
|
|
|
+ userSigs.value = userSig;
|
|
|
let params = {
|
|
|
token: token,
|
|
|
id: id,
|
|
|
};
|
|
|
init(params);
|
|
|
+ console.log("userSigsuserSigsuserSigs", userSigs.value);
|
|
|
});
|
|
|
|
|
|
function getQueryString(name) {
|
|
@@ -51,15 +55,15 @@ const onAgreePrivateProtocol = () => {
|
|
|
};
|
|
|
|
|
|
const handleLoginInfo = () => {
|
|
|
- const options = genTestUserSig({
|
|
|
- SDKAppID: uni.$chat_SDKAppID,
|
|
|
- secretKey: uni.$chat_secretKey,
|
|
|
- userID: inputValue.value,
|
|
|
- });
|
|
|
+ // const options = genTestUserSig({
|
|
|
+ // SDKAppID: uni.$chat_SDKAppID,
|
|
|
+ // secretKey: uni.$chat_secretKey || userSigs.value,
|
|
|
+ // userID: inputValue.value,
|
|
|
+ // });
|
|
|
const loginInfo = {
|
|
|
SDKAppID: uni.$chat_SDKAppID,
|
|
|
userID: inputValue.value,
|
|
|
- userSig: options.userSig,
|
|
|
+ userSig: userSigs.value,
|
|
|
useUploadPlugin: true,
|
|
|
framework: `vue${vueVersion}`,
|
|
|
TIMPush: uni.$TIMPush, // register TencentCloud-TIMPush
|