1、 addons\ewei_shopv2\core\inc\page_mobile.php 添加了18~86行代码,这部分代码处理了嵌入app登录逻辑 添加了88~165行代码,这部分是处理嵌入分销商城系统(mall.kuyicloud.com)的登录逻辑 --- 2、 addons\ewei_shopv2\core\mobile\account\index.php 修改了64~71行的代码 ``` 原本为: include $this->template('login', NULL, true); 修改成: $sws = isINSwsApp($_W, $_GPC, true); if($sws) { $swsapp = $this->sws; $swsapp['login'] = (int)$swsapp['login']; include $this->template('applogin', NULL, true); }else { include $this->template('login', NULL, true); } ``` 这部分代码是未登录时,判断是否来自app,并加载不同的登录页面,其他applogin页面在 `addons\ewei_shopv2\template\account\default3\applogin.html` --- 3、 addons\ewei_shopv2\template\mobile\default\_account.html 修改了有关`$swsapp`判断的代码