quanwei
18 hours ago c441dea81bd86bdfb12dff35821fed51f4cc91c2
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
<?php
 
namespace app\operations\model\page;
use app\common\model\page\CenterMenu as CenterMenuModel;
use think\facade\Cache;
 
/**
 * 模型
 */
class CenterMenu extends CenterMenuModel
{
 
    /**
     * 获取列表
     */
    public function getList($params)
    {
        $count = $this->count();
        // 如果没有数据、插入默认菜单
        if($count == 0){
            // 系统菜单
            $sys_menus = CenterMenuModel::getSysMenu();
            $save_data = [];
            foreach ($sys_menus as $menu) {
                $save_data[] = array_merge($sys_menus[$menu['sys_tag']], [
                    'sort' => 100,
                    'app_id' => self::$app_id
                ]);
            }
            $this->saveAll($save_data);
        }
        $list = $this->order(['sort' => 'asc'])
            ->paginate($params);
        foreach ($list as $menus){
            if(strpos($menus['image_url'], 'http') !== 0){
                $menus['image_url'] = self::$base_url . $menus['image_url'];
            }
        }
        return $list;
    }
    /**
     * 添加新记录
     */
    public function add($data)
    {
        $data['app_id'] = self::$app_id;
        $this->deleteCache();
        return $this->save($data);
    }
 
    /**
     * 编辑记录
     */
    public function edit($data)
    {
        if(isset($data['image_url']) && strpos($data['image_url'], 'image/menu') !== false){
            unset($data['image_url']);
        }
        $this->deleteCache();
        return $this->save($data);
    }
 
    /**
     * 删除记录
     */
    public function remove()
    {
        $this->deleteCache();
        return $this->delete();
    }
 
    /**
     * 删除缓存
     */
    private function deleteCache()
    {
        return Cache::delete('center_menu_' . self::$app_id);
    }
}