import * as dd from 'dingtalk-jsapi' export const dDingJudgeEnvPlatform = () => { /* 判断是否钉钉环境 */ if (dd.env.platform === 'notInDingTalk') { console.log("非钉钉环境"); return false } console.log("钉钉环境"); return true }