作者 anyv
1 个管道 的构建 通过 耗费 1 秒

产品

<?php
namespace app\admin\controller;
use cmf\controller\AdminBaseController;
use think\Db;
use app\admin\model\AdminMenuModel;
class CoaController extends AdminBaseController{
//说明文献显示
public function index(){
return $this -> fetch();
}
}
?>
\ No newline at end of file
... ...
<include file="public@header" />
</head>
<body>
<table class="table table-bordered" style="margin:10px 10px;">
<caption>产品列表</caption>
<thead>
<tr>
<th>产品名称</th>
<th>操作</th>
</tr>
</thead>
<tbody>
<tr>
<td>Tanmay</td>
<td>Bangalore</td>
</tr>
</tbody>
</table>
</body>
</html>
\ No newline at end of file
... ...