Advertisement

在线阅读百科文库网站项目的开发与搭建(第十三篇)

阅读量:

该部分内容属于前端开发范畴,主要涉及详细页面的展示功能,是在前日更新内容的基础上进一步优化与补充的,期望本文能够对各位在学习和实际应用过程中提供一定帮助。

此功能模块涵盖了电脑端及移动端的相关部分。

列表功能模块

复制代码
 namespace app\index\controller;

    
  
    
 use think\facade\View;
    
 use think\facade\Db;
    
 use app\index\model\Cat_tree as CatTree;
    
  
    
 class Doclist extends Common
    
 {
    
     public function index()
    
     {
    
     return View::fetch();
    
     }
    
     public function report()
    
     {
    
     print_r(111);
    
     }
    
  
    
     public function Type()
    
     {
    
     //获取到id
    
     $id = input('id','');
    
     // 接

全部评论 (0)

还没有任何评论哟~