打開文件
/simplewind/cmf/controller/HomeBaseController.php
添加函數
```
public function checkShangjiaLogin()
{
$userId = cmf_get_current_shangjia_id();
if (empty($userId)) {
if ($this->request->isAjax()) {
$this->error("您尚未登錄", cmf_url("shangjia/Login/index"));
} else {
$this->redirect(cmf_url("shangjia/Login/index"));
}
}
}
```