wujingjing
2024-12-18 605467fb93b73eb3d019933f7499ec8ad1837420
customer_list/ch/share/index.html
@@ -71,18 +71,23 @@
            }, wait);
         };
      };
      const getBaseUrl = () => {
         const serveUrl = window.location.origin + window.location.pathname;
         const shareSuffix = window.globalConfig.WebApiUrl.ShareUrl;
         return serveUrl.replace(shareSuffix, '');
      };
      const urlParams = getSearchParams(window.location.search);
      const id = urlParams.id;
      let pcShareUrl;
      let mobileShareUrl;
      const pcBaseUrl = getBaseUrl();
      if (isTest) {
         pcShareUrl = `https://wi.beng35.com/web/test/#/share?id=${id}`;
         pcShareUrl = `${pcBaseUrl}/#/share?id=${id}`;
         mobileShareUrl = `https://wi.beng35.com/mobile/test/#/share?id=${id}`;
      } else {
         pcShareUrl = `https://wi.beng35.com/#/share?id=${id}`;
         pcShareUrl = `${pcBaseUrl}/#/share?id=${id}`;
         mobileShareUrl = `https://wi.beng35.com/mobile/prod/#/share?id=${id}`;
      }
      window.location.href = isMobile() ? mobileShareUrl : pcShareUrl;