You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
863 B

3 months ago
  1. // +----------------------------------------------------------------------
  2. // | CRMEB [ CRMEB赋能开发者,助力企业发展 ]
  3. // +----------------------------------------------------------------------
  4. // | Copyright (c) 2016~2025 https://www.crmeb.com All rights reserved.
  5. // +----------------------------------------------------------------------
  6. // | Licensed CRMEB并不是自由软件,未经许可不能去掉CRMEB相关版权
  7. // +----------------------------------------------------------------------
  8. // | Author: CRMEB Team <admin@crmeb.com>
  9. // +----------------------------------------------------------------------
  10. let app = getApp();
  11. /**
  12. * 点击事件判断是否是isIframe页面
  13. */
  14. export function goPage() {
  15. return new Promise(resolve => {
  16. if (app.globalData.isIframe == false) {
  17. resolve(true);
  18. }else{
  19. return false
  20. }
  21. });
  22. }