Compare commits

..

No commits in common. "76a7bcbb19e6be187e1a2897aea3657dcd2fcfe4" and "e6cdad5cded06a895cba00e9ea7791da5b094b48" have entirely different histories.

2 changed files with 7 additions and 4 deletions

View File

@ -206,7 +206,9 @@ async function getCustomers() {
}
async function getResponsiblePerson() {
if (!externalUserId.value) {
await getExternalUserId(props.corpId)
}
const corpUserId = props.corpUserIds && props.corpUserIds[props.team.teamId] ? props.corpUserIds[props.team.teamId] : "";
const res = await api('getResponsiblePerson', { corpId: props.corpId, teamId: props.team.teamId, corpUserId, externalUserId: externalUserId.value });
return res && res.data ? res.data : ''

View File

@ -141,10 +141,11 @@ export default defineStore("accountStore", () => {
async function getExternalUserId(corpId) {
const unionid = account.value?.unionid;
const openid = account.value?.openid;
if (!(corpId && unionid && openid)) return;
if (!(corpId && unionid && openid) || externalUserId.value) return;
const res = await api('getUnionidToExternalUserid', { unionid, openid, corpId }, false);
const id = res && res.success && typeof res.data === 'string' && res.data.trim() ? res.data.trim() : '';
externalUserId.value = id;
if (res && res.success && typeof res.data === 'string' && res.data.trim()) {
externalUserId.value = res.data.trim();
}
}
watch(hasImCorpId, n => {