psi/web/Application/Mobile/Controller/GoodsQueryController.class.php
mojuncong 69da4f7bec 5/20
2016-05-20 22:14:57 +08:00

21 lines
No EOL
436 B
PHP

<?php
namespace Mobile\Controller;
use Think\Controller;
use Mobile\Service\GoodsQueryService;
class GoodsQueryController extends Controller{
public function querygoodsprice(){
$this->assign("uri", __ROOT__ . "/");
$this->display();
}
public function select(){
$this->assign("uri", __ROOT__ . "/");
$selected= new GoodsQueryService();
$this->ajaxReturn($selected->warehouse());
}
}