├── .bowerrc ├── .editorconfig ├── .gitignore ├── LICENSE.md ├── README.md ├── assets └── AppAsset.php ├── codeception.yml ├── commands └── HelloController.php ├── composer.json ├── config ├── console.php ├── params.php ├── test.php ├── test_db.php └── web.php ├── controllers ├── ApiController.php ├── ClassificationController.php ├── Controller.php ├── QuestionController.php ├── SiteController.php └── UserController.php ├── docs ├── docs0.png ├── docs1.png ├── docs2.png ├── docs3.png ├── docs4.png ├── examination.sql └── 题目导入模板.xlsx ├── mail └── layouts │ └── html.php ├── models ├── CarType.php ├── Chapter.php ├── Question.php ├── Special.php ├── Subject.php ├── User.php ├── UserCollect.php └── forms │ ├── LoginForm.php │ ├── RegisterForm.php │ └── UploadForm.php ├── modules └── admin │ ├── Admin.php │ ├── controllers │ ├── ChapterController.php │ ├── ClassificationController.php │ ├── Controller.php │ ├── DefaultController.php │ ├── QuestionController.php │ ├── SpecialController.php │ ├── SubjectController.php │ └── UserController.php │ ├── models │ └── User.php │ └── views │ ├── chapter │ └── index.php │ ├── classification │ └── index.php │ ├── question │ ├── create.php │ └── index.php │ ├── special │ └── index.php │ ├── subject │ └── index.php │ └── user │ └── index.php ├── requirements.php ├── runtime └── .gitignore ├── views ├── classification │ ├── index.php │ └── subject.php ├── layouts │ └── main.php ├── question │ ├── _crumbs.php │ ├── chapter.php │ ├── imitate.php │ ├── index.php │ └── special.php └── site │ ├── error.php │ └── index.php ├── web ├── .htaccess ├── assets │ └── .gitignore ├── css │ ├── bootstrap.min.css │ ├── chapter.css │ ├── common.css │ ├── imitate.css │ ├── index.css │ ├── jquery-ui.min.css │ └── question.css ├── favicon.ico ├── images │ ├── avatar.jpg │ ├── bg.png │ ├── border-bottom.png │ ├── chapter.png │ ├── diandian.png │ ├── error.png │ ├── exam.png │ ├── favor.png │ ├── fovor.png │ ├── fovor1.png │ ├── name.png │ ├── nanti.png │ ├── options.png │ ├── psw.png │ ├── shunxu.png │ ├── strengthen.png │ ├── suiji.png │ └── tan.png ├── index-test.php ├── index.php ├── js │ ├── bootstrap.min.js │ ├── common.js │ ├── examination.js │ ├── jquery-ui.min.js │ ├── jquery.min.js │ ├── jquery.mobile.custom.min.js │ ├── jquery.validate.min.js │ ├── jquery1x.min.js │ ├── layer │ │ ├── extend │ │ │ └── layer.ext.js │ │ ├── layer.js │ │ └── skin │ │ │ ├── default │ │ │ ├── icon-ext.png │ │ │ ├── icon.png │ │ │ ├── loading-0.gif │ │ │ ├── loading-1.gif │ │ │ └── loading-2.gif │ │ │ ├── layer.css │ │ │ └── layer.ext.css │ └── validate.message.js └── robots.txt ├── yii └── yii.bat /.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory" : "vendor/bower" 3 | } 4 | -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myloveGy/examination/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myloveGy/examination/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myloveGy/examination/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myloveGy/examination/HEAD/README.md -------------------------------------------------------------------------------- /assets/AppAsset.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myloveGy/examination/HEAD/assets/AppAsset.php -------------------------------------------------------------------------------- /codeception.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myloveGy/examination/HEAD/codeception.yml -------------------------------------------------------------------------------- /commands/HelloController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myloveGy/examination/HEAD/commands/HelloController.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myloveGy/examination/HEAD/composer.json -------------------------------------------------------------------------------- /config/console.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myloveGy/examination/HEAD/config/console.php -------------------------------------------------------------------------------- /config/params.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myloveGy/examination/HEAD/config/params.php -------------------------------------------------------------------------------- /config/test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myloveGy/examination/HEAD/config/test.php -------------------------------------------------------------------------------- /config/test_db.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myloveGy/examination/HEAD/config/test_db.php -------------------------------------------------------------------------------- /config/web.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myloveGy/examination/HEAD/config/web.php -------------------------------------------------------------------------------- /controllers/ApiController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myloveGy/examination/HEAD/controllers/ApiController.php -------------------------------------------------------------------------------- /controllers/ClassificationController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myloveGy/examination/HEAD/controllers/ClassificationController.php -------------------------------------------------------------------------------- /controllers/Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myloveGy/examination/HEAD/controllers/Controller.php -------------------------------------------------------------------------------- /controllers/QuestionController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myloveGy/examination/HEAD/controllers/QuestionController.php -------------------------------------------------------------------------------- /controllers/SiteController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myloveGy/examination/HEAD/controllers/SiteController.php -------------------------------------------------------------------------------- /controllers/UserController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myloveGy/examination/HEAD/controllers/UserController.php -------------------------------------------------------------------------------- /docs/docs0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myloveGy/examination/HEAD/docs/docs0.png -------------------------------------------------------------------------------- /docs/docs1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myloveGy/examination/HEAD/docs/docs1.png -------------------------------------------------------------------------------- /docs/docs2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myloveGy/examination/HEAD/docs/docs2.png -------------------------------------------------------------------------------- /docs/docs3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myloveGy/examination/HEAD/docs/docs3.png -------------------------------------------------------------------------------- /docs/docs4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myloveGy/examination/HEAD/docs/docs4.png -------------------------------------------------------------------------------- /docs/examination.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myloveGy/examination/HEAD/docs/examination.sql -------------------------------------------------------------------------------- /docs/题目导入模板.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myloveGy/examination/HEAD/docs/题目导入模板.xlsx -------------------------------------------------------------------------------- /mail/layouts/html.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myloveGy/examination/HEAD/mail/layouts/html.php -------------------------------------------------------------------------------- /models/CarType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myloveGy/examination/HEAD/models/CarType.php -------------------------------------------------------------------------------- /models/Chapter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myloveGy/examination/HEAD/models/Chapter.php -------------------------------------------------------------------------------- /models/Question.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myloveGy/examination/HEAD/models/Question.php -------------------------------------------------------------------------------- /models/Special.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myloveGy/examination/HEAD/models/Special.php -------------------------------------------------------------------------------- /models/Subject.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myloveGy/examination/HEAD/models/Subject.php -------------------------------------------------------------------------------- /models/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myloveGy/examination/HEAD/models/User.php -------------------------------------------------------------------------------- /models/UserCollect.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myloveGy/examination/HEAD/models/UserCollect.php -------------------------------------------------------------------------------- /models/forms/LoginForm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myloveGy/examination/HEAD/models/forms/LoginForm.php -------------------------------------------------------------------------------- /models/forms/RegisterForm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myloveGy/examination/HEAD/models/forms/RegisterForm.php -------------------------------------------------------------------------------- /models/forms/UploadForm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myloveGy/examination/HEAD/models/forms/UploadForm.php -------------------------------------------------------------------------------- /modules/admin/Admin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myloveGy/examination/HEAD/modules/admin/Admin.php -------------------------------------------------------------------------------- /modules/admin/controllers/ChapterController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myloveGy/examination/HEAD/modules/admin/controllers/ChapterController.php -------------------------------------------------------------------------------- /modules/admin/controllers/ClassificationController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myloveGy/examination/HEAD/modules/admin/controllers/ClassificationController.php -------------------------------------------------------------------------------- /modules/admin/controllers/Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myloveGy/examination/HEAD/modules/admin/controllers/Controller.php -------------------------------------------------------------------------------- /modules/admin/controllers/DefaultController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myloveGy/examination/HEAD/modules/admin/controllers/DefaultController.php -------------------------------------------------------------------------------- /modules/admin/controllers/QuestionController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myloveGy/examination/HEAD/modules/admin/controllers/QuestionController.php -------------------------------------------------------------------------------- /modules/admin/controllers/SpecialController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myloveGy/examination/HEAD/modules/admin/controllers/SpecialController.php -------------------------------------------------------------------------------- /modules/admin/controllers/SubjectController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myloveGy/examination/HEAD/modules/admin/controllers/SubjectController.php -------------------------------------------------------------------------------- /modules/admin/controllers/UserController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myloveGy/examination/HEAD/modules/admin/controllers/UserController.php -------------------------------------------------------------------------------- /modules/admin/models/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myloveGy/examination/HEAD/modules/admin/models/User.php -------------------------------------------------------------------------------- /modules/admin/views/chapter/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myloveGy/examination/HEAD/modules/admin/views/chapter/index.php -------------------------------------------------------------------------------- /modules/admin/views/classification/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myloveGy/examination/HEAD/modules/admin/views/classification/index.php -------------------------------------------------------------------------------- /modules/admin/views/question/create.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myloveGy/examination/HEAD/modules/admin/views/question/create.php -------------------------------------------------------------------------------- /modules/admin/views/question/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myloveGy/examination/HEAD/modules/admin/views/question/index.php -------------------------------------------------------------------------------- /modules/admin/views/special/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myloveGy/examination/HEAD/modules/admin/views/special/index.php -------------------------------------------------------------------------------- /modules/admin/views/subject/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myloveGy/examination/HEAD/modules/admin/views/subject/index.php -------------------------------------------------------------------------------- /modules/admin/views/user/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myloveGy/examination/HEAD/modules/admin/views/user/index.php -------------------------------------------------------------------------------- /requirements.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myloveGy/examination/HEAD/requirements.php -------------------------------------------------------------------------------- /runtime/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore -------------------------------------------------------------------------------- /views/classification/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myloveGy/examination/HEAD/views/classification/index.php -------------------------------------------------------------------------------- /views/classification/subject.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myloveGy/examination/HEAD/views/classification/subject.php -------------------------------------------------------------------------------- /views/layouts/main.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myloveGy/examination/HEAD/views/layouts/main.php -------------------------------------------------------------------------------- /views/question/_crumbs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myloveGy/examination/HEAD/views/question/_crumbs.php -------------------------------------------------------------------------------- /views/question/chapter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myloveGy/examination/HEAD/views/question/chapter.php -------------------------------------------------------------------------------- /views/question/imitate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myloveGy/examination/HEAD/views/question/imitate.php -------------------------------------------------------------------------------- /views/question/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myloveGy/examination/HEAD/views/question/index.php -------------------------------------------------------------------------------- /views/question/special.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myloveGy/examination/HEAD/views/question/special.php -------------------------------------------------------------------------------- /views/site/error.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myloveGy/examination/HEAD/views/site/error.php -------------------------------------------------------------------------------- /views/site/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myloveGy/examination/HEAD/views/site/index.php -------------------------------------------------------------------------------- /web/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myloveGy/examination/HEAD/web/.htaccess -------------------------------------------------------------------------------- /web/assets/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /web/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myloveGy/examination/HEAD/web/css/bootstrap.min.css -------------------------------------------------------------------------------- /web/css/chapter.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myloveGy/examination/HEAD/web/css/chapter.css -------------------------------------------------------------------------------- /web/css/common.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myloveGy/examination/HEAD/web/css/common.css -------------------------------------------------------------------------------- /web/css/imitate.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myloveGy/examination/HEAD/web/css/imitate.css -------------------------------------------------------------------------------- /web/css/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myloveGy/examination/HEAD/web/css/index.css -------------------------------------------------------------------------------- /web/css/jquery-ui.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myloveGy/examination/HEAD/web/css/jquery-ui.min.css -------------------------------------------------------------------------------- /web/css/question.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myloveGy/examination/HEAD/web/css/question.css -------------------------------------------------------------------------------- /web/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myloveGy/examination/HEAD/web/favicon.ico -------------------------------------------------------------------------------- /web/images/avatar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myloveGy/examination/HEAD/web/images/avatar.jpg -------------------------------------------------------------------------------- /web/images/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myloveGy/examination/HEAD/web/images/bg.png -------------------------------------------------------------------------------- /web/images/border-bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myloveGy/examination/HEAD/web/images/border-bottom.png -------------------------------------------------------------------------------- /web/images/chapter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myloveGy/examination/HEAD/web/images/chapter.png -------------------------------------------------------------------------------- /web/images/diandian.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myloveGy/examination/HEAD/web/images/diandian.png -------------------------------------------------------------------------------- /web/images/error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myloveGy/examination/HEAD/web/images/error.png -------------------------------------------------------------------------------- /web/images/exam.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myloveGy/examination/HEAD/web/images/exam.png -------------------------------------------------------------------------------- /web/images/favor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myloveGy/examination/HEAD/web/images/favor.png -------------------------------------------------------------------------------- /web/images/fovor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myloveGy/examination/HEAD/web/images/fovor.png -------------------------------------------------------------------------------- /web/images/fovor1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myloveGy/examination/HEAD/web/images/fovor1.png -------------------------------------------------------------------------------- /web/images/name.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myloveGy/examination/HEAD/web/images/name.png -------------------------------------------------------------------------------- /web/images/nanti.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myloveGy/examination/HEAD/web/images/nanti.png -------------------------------------------------------------------------------- /web/images/options.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myloveGy/examination/HEAD/web/images/options.png -------------------------------------------------------------------------------- /web/images/psw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myloveGy/examination/HEAD/web/images/psw.png -------------------------------------------------------------------------------- /web/images/shunxu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myloveGy/examination/HEAD/web/images/shunxu.png -------------------------------------------------------------------------------- /web/images/strengthen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myloveGy/examination/HEAD/web/images/strengthen.png -------------------------------------------------------------------------------- /web/images/suiji.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myloveGy/examination/HEAD/web/images/suiji.png -------------------------------------------------------------------------------- /web/images/tan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myloveGy/examination/HEAD/web/images/tan.png -------------------------------------------------------------------------------- /web/index-test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myloveGy/examination/HEAD/web/index-test.php -------------------------------------------------------------------------------- /web/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myloveGy/examination/HEAD/web/index.php -------------------------------------------------------------------------------- /web/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myloveGy/examination/HEAD/web/js/bootstrap.min.js -------------------------------------------------------------------------------- /web/js/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myloveGy/examination/HEAD/web/js/common.js -------------------------------------------------------------------------------- /web/js/examination.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myloveGy/examination/HEAD/web/js/examination.js -------------------------------------------------------------------------------- /web/js/jquery-ui.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myloveGy/examination/HEAD/web/js/jquery-ui.min.js -------------------------------------------------------------------------------- /web/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myloveGy/examination/HEAD/web/js/jquery.min.js -------------------------------------------------------------------------------- /web/js/jquery.mobile.custom.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myloveGy/examination/HEAD/web/js/jquery.mobile.custom.min.js -------------------------------------------------------------------------------- /web/js/jquery.validate.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myloveGy/examination/HEAD/web/js/jquery.validate.min.js -------------------------------------------------------------------------------- /web/js/jquery1x.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myloveGy/examination/HEAD/web/js/jquery1x.min.js -------------------------------------------------------------------------------- /web/js/layer/extend/layer.ext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myloveGy/examination/HEAD/web/js/layer/extend/layer.ext.js -------------------------------------------------------------------------------- /web/js/layer/layer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myloveGy/examination/HEAD/web/js/layer/layer.js -------------------------------------------------------------------------------- /web/js/layer/skin/default/icon-ext.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myloveGy/examination/HEAD/web/js/layer/skin/default/icon-ext.png -------------------------------------------------------------------------------- /web/js/layer/skin/default/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myloveGy/examination/HEAD/web/js/layer/skin/default/icon.png -------------------------------------------------------------------------------- /web/js/layer/skin/default/loading-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myloveGy/examination/HEAD/web/js/layer/skin/default/loading-0.gif -------------------------------------------------------------------------------- /web/js/layer/skin/default/loading-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myloveGy/examination/HEAD/web/js/layer/skin/default/loading-1.gif -------------------------------------------------------------------------------- /web/js/layer/skin/default/loading-2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myloveGy/examination/HEAD/web/js/layer/skin/default/loading-2.gif -------------------------------------------------------------------------------- /web/js/layer/skin/layer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myloveGy/examination/HEAD/web/js/layer/skin/layer.css -------------------------------------------------------------------------------- /web/js/layer/skin/layer.ext.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myloveGy/examination/HEAD/web/js/layer/skin/layer.ext.css -------------------------------------------------------------------------------- /web/js/validate.message.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myloveGy/examination/HEAD/web/js/validate.message.js -------------------------------------------------------------------------------- /web/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: -------------------------------------------------------------------------------- /yii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myloveGy/examination/HEAD/yii -------------------------------------------------------------------------------- /yii.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myloveGy/examination/HEAD/yii.bat --------------------------------------------------------------------------------