field($fields) ->where('a.status=1') ->where("a.acode='" . get_lg() . "'") ->where($where) ->join($join) ->order('a.pcode,a.sorting,a.id') ->select(); return $result; } // 指定列表内容 public function getSortContent($scode) { $fields = array( 'a.id', 'a.filename', 'a.date', 'c.type', 'c.urlname', 'b.scode', 'b.scode as bscode', 'b.pcode as bpcode', 'b.filename as sortfilename' ); $join = array( array( 'ay_content_sort b', 'a.scode=b.scode', 'LEFT' ), array( 'ay_model c', 'b.mcode=c.mcode', 'LEFT' ) ); $where = array( 'b.scode NOT IN(13,19,26)', 'b.pcode NOT IN(13,19,26)', 'a.status=1', 'c.type=2', "a.date<'" . date('Y-m-d H:i:s') . "'" ); return parent::table('ay_content a')->field($fields) ->where("a.scode='$scode'") ->where($where) ->join($join) ->select(); } }