fix: 问题修复

This commit is contained in:
huxuejian 2026-06-08 17:21:38 +08:00
parent c22f57b281
commit ae2661ab26
3 changed files with 5 additions and 3 deletions

View File

@ -83,7 +83,8 @@ const consultItems = ref([
]);
const hideMenus = computed(() => {
const result = {};
if (!props.team || !props.team.creator) {
//
if (!(props.team && props.team.createSource === 'yzs')) {
result.chat = true;
}
return result;
@ -92,7 +93,7 @@ const hideMenus = computed(() => {
function handleItemClick(item) {
//
if (item.needSelectConsultant) {
if (!props.team || !props.team.creator) {
if (!(props.team && props.team.createSource === 'yzs')) {
return toast('该团队暂未开放咨询服务')
}

View File

@ -146,7 +146,7 @@ const hasHealthTemp = computed(
() =>
qrcode.value &&
Array.isArray(qrcode.value.healthTempList) &&
qrcode.value.healthTempList.length > 0
qrcode.value.healthTempList.filter(i => i && i.enable).length > 0
);
const baseInfo = computed(() =>
qrcode.value &&

View File

@ -4,6 +4,7 @@ export const API_CONTEXT_CACHE_KEY = "ykt_team_api_context";
export const CORP_API_BASE_URL_MAP = {
wwa54dfba0b5441ef1: "https://crm.gykqyy.com/ykt/",
ww1b4bcb2fd92baafa: 'https://hlwyy.6thhosp.com:4443/'
};
function normalizeBaseUrl(url) {