User.php
1.7 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
68
69
70
71
72
73
74
75
76
77
<?php
namespace app\admin\model;
use think\Model;
class User extends Model
{
// 表名
protected $name = 'user';
// 自动写入时间戳字段
protected $autoWriteTimestamp = 'int';
// 定义时间戳字段名
protected $createTime = 'createtime';
protected $updateTime = 'updatetime';
protected $deleteTime = false;
// 追加属性
protected $append = [
'is_new_text',
'level_text',
'sex_text'
];
public function getIsNewList()
{
return ['0' => __('Is_new 0'), '1' => __('Is_new 1')];
}
public function getLevelList()
{
return ['1' => __('Level 1'), '2' => __('Level 2'), '3' => __('Level 3'), '4' => __('Level 4'), '5' => __('Level 5'), '6' => __('Level 6'), '7' => __('Level 7'), '8' => __('Level 8')];
}
public function getSexList()
{
return ['1' => __('Sex 1'), '2' => __('Sex 2')];
}
public function getIsNewTextAttr($value, $data)
{
$value = $value ? $value : (isset($data['is_new']) ? $data['is_new'] : '');
$list = $this->getIsNewList();
return isset($list[$value]) ? $list[$value] : '';
}
public function getLevelTextAttr($value, $data)
{
$value = $value ? $value : (isset($data['level']) ? $data['level'] : '');
$list = $this->getLevelList();
return isset($list[$value]) ? $list[$value] : '';
}
public function getSexTextAttr($value, $data)
{
$value = $value ? $value : (isset($data['sex']) ? $data['sex'] : '');
$list = $this->getSexList();
return isset($list[$value]) ? $list[$value] : '';
}
}