1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- <?php
- namespace app\allwin\model;
- use think\Model;
- use category\Tree;
- class AllwinStoreCate extends Model{
- protected $pk = 'id';
- protected $autoWriteTimestamp = true;
- protected $updateTime = false;
-
-
- public function edit($param){
- $data['parent_id'] = $param['parent_id'];
- $data['title'] = trim($param['title']);
- $data['name'] = trim($param['name']);
- $data['sort'] = trim($param['sort']);
- $data['picture'] = trim($param['picture']);
- $data['update_time'] = time();
- if(isset($param['id'])){
- return self::update($data,['id'=>(int)$param['id']]);
- }else{
- if($param['parent_id']){
- $info = self::get($param['parent_id']);
- if($info['root_id']){
- $data['root_id'] = $info['root_id'];
- }else{
- $data['root_id'] = $info['id'];
- }
- }else{
- $data['root_id'] = 0;
- }
- $data['create_time'] = time();
- $data['member_miniapp_id'] = $param['member_miniapp_id'];
- return self::insert($data);
- }
- }
-
- public function selectPath($parent_id) {
- $pathMaps[] = ['name'=>'行业分类','url'=>url('storecate/index')];
- $getPath = self::getPath($parent_id);
- foreach ($getPath as $value) {
- $pathMaps[] = ['name' => $value['title'],'url' => url('storecate/index',['parent_id'=>$value['id']])];
- }
- return $pathMaps;
- }
-
- public function getPath($parent_id){
- $result = self::field('id,title,parent_id')->select();
- $tree = new Tree(array('id','parent_id','title','name'));
- return $tree->getPath($result,$parent_id);
- }
- }
|