diff --git a/.gitignore b/.gitignore index 3551aff2c..99b8cc339 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,6 @@ .env +.git +.svn .idea .vscode *.log @@ -7,7 +9,7 @@ /nbproject /composer.lock /public/upload -/public/static/theme/css/node_modules/ +/public/static/theme/css/node_modules /public/static/theme/css/package-lock.json /public/static/theme/css/console.custom.css /public/static/theme/css/console.custom.css.map diff --git a/composer.lock b/composer.lock index 68070805e..6924639d3 100644 --- a/composer.lock +++ b/composer.lock @@ -929,12 +929,12 @@ "source": { "type": "git", "url": "https://github.com/zoujingli/ThinkLibrary.git", - "reference": "e03639f80bccd83c9ab5bb1f1001ea1d62d85afa" + "reference": "5cadd93e2f12dcb645b6a63652da5b37d220274f" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/zoujingli/ThinkLibrary/zipball/e03639f80bccd83c9ab5bb1f1001ea1d62d85afa", - "reference": "e03639f80bccd83c9ab5bb1f1001ea1d62d85afa", + "url": "https://api.github.com/repos/zoujingli/ThinkLibrary/zipball/5cadd93e2f12dcb645b6a63652da5b37d220274f", + "reference": "5cadd93e2f12dcb645b6a63652da5b37d220274f", "shasum": "", "mirrors": [ { @@ -978,7 +978,7 @@ ], "description": "ThinkPHP v6.0 Development Library", "homepage": "http://framework.thinkadmin.top", - "time": "2020-07-22T06:32:55+00:00" + "time": "2020-07-28T07:55:11+00:00" }, { "name": "zoujingli/wechat-developer", diff --git a/vendor/composer/installed.json b/vendor/composer/installed.json index 45e55aad7..976c3dab7 100644 --- a/vendor/composer/installed.json +++ b/vendor/composer/installed.json @@ -955,12 +955,12 @@ "source": { "type": "git", "url": "https://github.com/zoujingli/ThinkLibrary.git", - "reference": "e03639f80bccd83c9ab5bb1f1001ea1d62d85afa" + "reference": "5cadd93e2f12dcb645b6a63652da5b37d220274f" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/zoujingli/ThinkLibrary/zipball/e03639f80bccd83c9ab5bb1f1001ea1d62d85afa", - "reference": "e03639f80bccd83c9ab5bb1f1001ea1d62d85afa", + "url": "https://api.github.com/repos/zoujingli/ThinkLibrary/zipball/5cadd93e2f12dcb645b6a63652da5b37d220274f", + "reference": "5cadd93e2f12dcb645b6a63652da5b37d220274f", "shasum": "", "mirrors": [ { @@ -976,7 +976,7 @@ "ext-json": "*", "topthink/framework": "^6.0" }, - "time": "2020-07-22T06:32:55+00:00", + "time": "2020-07-28T07:55:11+00:00", "type": "library", "extra": { "think": { diff --git a/vendor/services.php b/vendor/services.php index 8a0f3a13f..45f215360 100644 --- a/vendor/services.php +++ b/vendor/services.php @@ -1,5 +1,5 @@ 'think\\app\\Service', diff --git a/vendor/zoujingli/think-library/src/helper/ValidateHelper.php b/vendor/zoujingli/think-library/src/helper/ValidateHelper.php index ad746b5c0..2204b31f1 100644 --- a/vendor/zoujingli/think-library/src/helper/ValidateHelper.php +++ b/vendor/zoujingli/think-library/src/helper/ValidateHelper.php @@ -30,11 +30,12 @@ class ValidateHelper extends Helper * @param array $rules 验证规则( 验证信息数组 ) * @param string $type 输入方式 ( post. 或 get. ) * @return array - * name.require => message - * age.max:100 => message - * name.between:1,120 => message - * name.value => value + * age.max:100 => message // 最大值限定 + * name.require => message // 必填内容 + * name.between:1,120 => message // 范围限定 + * name.value => value // 固定字段数值内容 * name.default => 100 // 获取并设置默认值 + * 更多规则参照 ThinkPHP 官方的验证类 */ public function init(array $rules, $type = '') {