chengkun
2025-04-27 1158f672536ba406cc4bef68aed19a6c05483ab4
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<?php
 
class search_resume_controller extends lietou
{
    function index_action(){
        $CacheM        =    $this -> MODEL('cache');
        $cacheList    =    $CacheM -> GetCache(array('job','user','hy','city','uptime'));
        $this -> yunset($cacheList);
        if(empty($cacheList['city_type'])){
            $this   ->  yunset('cionly',1);
        }
        if(empty($cacheList['job_type'])){
            $this   ->  yunset('jionly',1);
        }
        $this -> yunset('ltstyle',$this -> config['sy_weburl'].'/app/template/lietou');
        $this -> public_action();
        $this -> lietou_tpl('search_resume');
    }
}
?>