diff --git a/app/controller/admin/Common.php b/app/controller/admin/Common.php index 4828571..cdbe603 100644 --- a/app/controller/admin/Common.php +++ b/app/controller/admin/Common.php @@ -559,5 +559,27 @@ class Common extends BaseController return app('json')->success($menusList); } + + public function auth() + { + return app('json')->success([ + 'authCode' => '1', + 'day' => 0, + 'status' => 1 + ]); + } + + public function authCopyright() + { + return app('json')->success([ + 'copyright_status' => 'ZC5979798', + 'status' => 1 + ]); + } + + public function check_auth() + { + return app('json')->success(); + } } diff --git a/config/crmeb.php b/config/crmeb.php new file mode 100644 index 0000000..9719753 Binary files /dev/null and b/config/crmeb.php differ diff --git a/crmeb/basic/BaseAuth.php b/crmeb/basic/BaseAuth.php new file mode 100644 index 0000000..75c380a Binary files /dev/null and b/crmeb/basic/BaseAuth.php differ diff --git a/crmeb/basic/BaseController.php b/crmeb/basic/BaseController.php new file mode 100644 index 0000000..18cf31c Binary files /dev/null and b/crmeb/basic/BaseController.php differ diff --git a/crmeb/basic/BaseManager.php b/crmeb/basic/BaseManager.php new file mode 100644 index 0000000..7da06fc Binary files /dev/null and b/crmeb/basic/BaseManager.php differ diff --git a/crmeb/basic/BaseMessage.php b/crmeb/basic/BaseMessage.php new file mode 100644 index 0000000..96a8c0e Binary files /dev/null and b/crmeb/basic/BaseMessage.php differ diff --git a/crmeb/basic/BaseStorage.php b/crmeb/basic/BaseStorage.php new file mode 100644 index 0000000..9e00654 Binary files /dev/null and b/crmeb/basic/BaseStorage.php differ diff --git a/crmeb/basic/BaseUpload.php b/crmeb/basic/BaseUpload.php new file mode 100644 index 0000000..12b46a4 Binary files /dev/null and b/crmeb/basic/BaseUpload.php differ