You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					
					
						
							56 lines
						
					
					
						
							1.6 KiB
						
					
					
				
			
		
		
		
			
			
			
				
					
				
				
					
				
			
		
		
	
	
							56 lines
						
					
					
						
							1.6 KiB
						
					
					
				
								<?php
							 | 
						|
								
							 | 
						|
								/**
							 | 
						|
								
							 | 
						|
								 * [Laike System] Copyright (c) 2017-2020 laiketui.com
							 | 
						|
								
							 | 
						|
								 * Laike is not a free software, it under the license terms, visited http://www.laiketui.com/ for more details.
							 | 
						|
								
							 | 
						|
								 */
							 | 
						|
								require_once(MO_LIB_DIR . '/DBAction.class.php');
							 | 
						|
								
							 | 
						|
								class ajaxAction extends Action {
							 | 
						|
								
							 | 
						|
								    public function getDefaultView() {
							 | 
						|
								        $db = DBAction::getInstance();
							 | 
						|
								        $request = $this->getContext()->getRequest();
							 | 
						|
								        $product_class_id = addslashes(trim($request->getParameter('product_class_id'))); // 商品类型id
							 | 
						|
								        $product_id = addslashes(trim($request->getParameter('product_id'))); // 商品类型id
							 | 
						|
								        if($product_class_id){
							 | 
						|
								            $sql = "select id,product_title from lkt_product_list where product_class like '%$product_class_id%'";
							 | 
						|
								            $r = $db->select($sql);
							 | 
						|
								            if($r){
							 | 
						|
								                $res = '<option value="0" >全部</option>';
							 | 
						|
								                foreach ($r as $key => $value) {
							 | 
						|
								                    if($product_id == $value->id){
							 | 
						|
								                        $res.= "<option value='{$value->id}' selected>{$value->product_title}</option>";
							 | 
						|
								                    }else{
							 | 
						|
								                        $res.= "<option value='{$value->id}'>{$value->product_title}</option>";
							 | 
						|
								                    }
							 | 
						|
								                   
							 | 
						|
								                }
							 | 
						|
								                echo $res;
							 | 
						|
								                exit;
							 | 
						|
								            }else{
							 | 
						|
								                $res = 0;
							 | 
						|
								                echo $res;
							 | 
						|
								            }
							 | 
						|
								        }else{
							 | 
						|
								            $res = 0;
							 | 
						|
								            echo $res;
							 | 
						|
								        }
							 | 
						|
								        
							 | 
						|
								        return;
							 | 
						|
								    }
							 | 
						|
								
							 | 
						|
								    public function execute(){
							 | 
						|
								        
							 | 
						|
								    }
							 | 
						|
								
							 | 
						|
								    public function getRequestMethods(){
							 | 
						|
								        return Request :: NONE;
							 | 
						|
								    }
							 | 
						|
								
							 | 
						|
								}
							 | 
						|
								
							 | 
						|
								?>
							 |