Decorate.php
2.3 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
78
79
80
81
82
83
84
85
86
87
88
<?php
namespace app\admin\model\groupon;
use think\Model;
use traits\model\SoftDelete;
class Decorate extends Model
{
use SoftDelete;
// 表名
protected $name = 'groupon_decorate';
// 自动写入时间戳字段
protected $autoWriteTimestamp = 'int';
// 定义时间戳字段名
protected $createTime = 'createtime';
protected $updateTime = 'updatetime';
protected $deleteTime = 'deletetime';
// 追加属性
protected $append = [
'status_text',
'platform_text',
'cover'
];
public function getStatusList()
{
return ['normal' => __('Normal'), 'hidden' => __('Hidden')];
}
public function getPlatformList()
{
return ['H5' => __('Platform h5'), 'wxOfficialAccount' => __('Platform wxofficialaccount'), 'wxMiniProgram' => __('Platform wxminiprogram'), 'App' => __('Platform app')];
}
public function getStatusTextAttr($value, $data)
{
$value = $value ? $value : (isset($data['status']) ? $data['status'] : '');
$list = $this->getStatusList();
return isset($list[$value]) ? $list[$value] : '';
}
public function getImageAttr($value, $data)
{
if (!empty($value)) return cdnurl($value, true);
}
public function getPlatformTextAttr($value, $data)
{
$value = $value ? $value : (isset($data['platform']) ? $data['platform'] : '');
$valueArr = explode(',', $value);
$list = $this->getPlatformList();
return implode(',', array_intersect_key($list, array_flip($valueArr)));
}
// 获取轮播图,作为模板封面
public function getCoverAttr() {
$cover = '';
$contents = collection($this->contents)->toArray();
$contents = array_column($contents, null, 'type');
if (isset($contents['banner']) && $contents['banner']) {
$content = json_decode($contents['banner']['content'], true);
$cover = isset($content['list'][0]) && $content['list'][0] ? $content['list'][0]['image'] : '';
}
return $cover;
}
protected function setPlatformAttr($value)
{
return is_array($value) ? implode(',', $value) : $value;
}
public function contents() {
return $this->hasMany(DecorateContent::class, 'decorate_id');
}
}