QuestionValidate.php
1.8 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
<?php
// +----------------------------------------------------------------------
// |评分题目验证
// +----------------------------------------------------------------------
// |魏强
// +----------------------------------------------------------------------
namespace app\admin\validate;
use think\Validate;
class QuestionValidate extends Validate
{
protected $rule = [
'type' => 'checkType',
'hint_type' => 'checkHint',
'score' => 'checkScore'
];
// 自定义验证规则
protected function checkHint($value, $rule, $post)
{
if (!empty($value)) {
if(empty($post['hint_title'])){
return '提示信息标题不能为空';
}
else if(empty($post['hint_content'])){
return '提示信息内容不能为空';
} elseif(empty($post['hint_text'])){
return '提示标注不能为空';
} else {
return true;
}
} else {
return true;
}
}
protected function checkType($value,$rule,$post){
if (!empty($value)) {
if(empty($post['max'])){
return '评分区间不能为空';
}
else if(empty($post['content'])){
return '评分内容不能为空';
} else {
return true;
}
} else {
return true;
}
}
protected function checkScore($value,$rule,$post){
return true;
if(!empty($post['parent_id'])){
if(empty($value)){
return '题目分值不能为空';
} else {
return true;
}
} else {
return true;
}
}
}