mirror of
https://github.com/mojuncong/psi.git
synced 2025-10-09 22:35:47 +08:00
21 lines
No EOL
436 B
PHP
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());
|
|
}
|
|
} |