Files
juipphp/app/ros/controller/Index.php

16 lines
297 B
PHP
Raw Normal View History

2022-03-21 17:59:31 +08:00
<?php
namespace app\ros\controller;
use app\ros\model\Product as ProductModel;
class Index
{
//获取产品列表
public function getList() {
$product_model = new ProductModel();
$list = $product_model->getList([],'*','id asc');
echo json_encode($list);
}
}