企业模块新闻中心模块代码

Original 2018-11-18 18:51:08 226
abstract:控制器代码:<?php namespace app\index\controller; use app\admin\model\NewsModel; use app\admin\model\ProductModel; use app\admin\model\SlideModel; use app\admin\model\SystemMode
  1. 控制器代码:

  2. <?php
    
    namespace app\index\controller;
    use app\admin\model\NewsModel;
    use app\admin\model\ProductModel;
    use app\admin\model\SlideModel;
    use app\admin\model\SystemModel;
    use think\Controller;
    use think\facade\Request;
    
    class Index extends Controller
    {
        public function index()
        {
            // 查询轮播图
            $slide = new SlideModel();
            $slides = $slide->select()->toArray();
            $this->view->slides = $slides;
    
            // 查询头牌
            $product = new ProductModel();
            $products = $product->where('sort','1')->select()->toArray();
            $this->view->products = $products;
            // 查询新上花魁
            $NewProduct = $product->where('sort','1')->limit(1)->select()->toArray();
            $this->view->NewProduct = $NewProduct;
    
            // 查询最新资讯
            $new = new NewsModel();
            $news = $new->limit(2)->select()->toArray();
            $this->view->news=$news;
    
            // 渲染首页模板
            return $this->fetch();
        }
    
        public function about()
        {
        	$system = new SystemModel();
            $systems = $system->select()->toArray();
            $this->view->systems = $systems;
            // 渲染首页模板
            return $this->fetch();
        }
    
        public function product()
        {   
        	$product = new ProductModel();
            $products = $product->order('id','desc')->paginate(2);
            $this->view->products=$products;
            // 渲染首页模板
            return $this->fetch();
        }
    
        public function news()
        {
        	$new = new NewsModel();
            // 查询数据按照id的顺序查询并且每页四条数据
            $news = $new->order('id','desc')->paginate(4);
            // 给模板继续赋值
            $this->view->news=$news;
    
            $hotNew = $new->limit(1)->select()->toArray();
            $this->view->hotNews = $hotNew;
    
            $newNews = $new->limit(6)->select()->toArray();
            $this->view->newNews=$newNews;
            // 渲染首页模板
            return $this->fetch();
        }
    
        public function ConNew()
        {
            $newId = Request::param('id');
            // 通过id查询对应的新闻详细
            $new = NewsModel::get($newId);
            $this->view->new= $new;
    
            $hotNew = $new->limit(1)->select()->toArray();
            $this->view->hotNews = $hotNew;
    
            $newNews = $new->limit(6)->select()->toArray();
            $this->view->newNews=$newNews;
            // 渲染首页模板
            return $this->fetch();
        }
    
        public function ConPro()
        {
            // 获取产品id
            $ProId = Request::param('id');
            $product = ProductModel::get($ProId);
            $this->view->product=$product;
            // 渲染首页模板
            return $this->fetch();
        }
    
    }

    2.视图中new.html代码:

  3. <!doctype html>
    <html>
    <head>
        <meta charset="UTF-8">
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
        <title>丽春院 — 新闻中心</title>
        {include file="public/style"}
    </head>
    <body>
    <div id="page">
        {include file="public/head"}
        <div id="body">
            <div class="header">
                <div>
                    <h1 style="color: #6E6E6E; font-family: YouYuan; font-weight: bold">新闻中心</h1>
                    <div class="article">
                        <ul>
                            {volist name="news" id="new"}
                            <li>
                                <a href="{:url('ConNew')}?id={$new.id}"><img src="{:GetPic($new.id)}" style="border-radius:10px; box-shadow: 0 0 0px #6E6E6E;   width: 100%;height: 100%;" alt=""></a>
                                <h1>{$new.title}</h1>
                                <span style="color: #0C0C0C">{$new.time|date="Y-m-d"}</span>
                                <p style="color: #0C0C0C">{$new.desc}</p>
                                <a href="{:url('ConNew')}?id={$new.id}" class="more">阅读更多</a>
                            </li>
                            {/volist}
                        </ul>
                    </div>
                    <div class="sidebar">
                        <ul>
                            {volist name="hotNews" id="hotNew"}
                            <li>
                                <h1>热门新闻</h1>
                                <a href="{:url('ConNew')}?id={$hotNew.id}"><img src="{:GetPic($hotNew.id)}" style="border-radius:10px; box-shadow: 0 0 5px #6E6E6E;   width: 340px;height: 188px;" alt=""></a>
                                <h2>{$hotNew.title}</h2>
                                <span>{$hotNew.desc}</span>
                            </li>
                            {/volist}
                            <li>
                                <h1>最新发布</h1>
                                {volist name="newNews" id="newNew"}
                                <ul>
                                    <li>
                                        <a href="{:url('ConNew')}?id={$newNew.id}"><img src="{:GetPic($newNew.id)}" style="border-radius:10px; box-shadow: 0 0 2px #6E6E6E;   width: 60px;height: 55px;" alt=""></a>
                                        <h2 style="font-size: 15px;">{$newNew.title}</h2>
                                        <span>{$newNew.time|date="Y-m-d"}</span>
                                    </li>
                                </ul>
                                {/volist}
                            </li>
                        </ul>
                    </div>
                </div>
    
            </div>
            <div class="page">
                <div>
                    {$news|raw}
                </div>
            </div>
        </div>
        {include file="public/foot"}
    </div>
    </body>
    </html>

    3.con_pro.html

  4. <!doctype html>
    <html>
    <head>
        <meta charset="UTF-8">
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
        <title>丽春院 — 产品详细</title>
    {include file="/public/style"}
    </head>
    <body>
    <div id="page">
           <div id="header">
            <div>
                <a href="index.html" class="logo"><img src="./images/logo.png" alt=""></a>
                <ul id="navigation">
                    <li>
                        <a href="index.html">首页</a>
                    </li>
                    <li>
                        <a href="about.html">关于我们</a>
                    </li>
                    <li class="menu">
                        <a href="product.html">产品展示</a>
                    </li>
                    <li class="menu">
                        <a href="news.html">新闻中心</a>
                    </li>
                </ul>
            </div>
        </div>
        <div id="body">
            <div class="header">
                <div>
                    <h1>产品详细</h1>
                    <img src="{:GetProPic($product.id)}"
                         style="height: 300px; width: 600px;box-shadow: 0 0 5px #000; border-radius:10px; " alt="">     
                    <div style="border-radius:10px; box-shadow: 0 0 5px #6E6E6E;  background: #BDBDBD;   margin-top: 50px;">
                        <h2 style="padding: 0px; color: #0C0C0C;">{$product.title}</h2>
                        <p>{:htmlspecialchars_decode($product.content)}</p>
                    </div>
                </div>
            </div>
        </div>
        <div id="footer">
            <div class="footnote">
                <div>
                    <p style="color: #EEE">Copyright &copy; 2016.Company name All rights reserved.More Templates <a
                            href="//m.sbmmt.com" target="_blank" style="color: #EEE;" title="丽春院">丽春院</a> - Collect from
                        <a href="//m.sbmmt.com" style="color: #EEE" title="PHP中文网" target="_blank">PHP中文网</a></p>
                </div>
            </div>
        </div>
    </div>
    </body>
    </html>

    4.con_new.html代码:

  5. <!doctype html>
    <html>
    <head>
        <meta charset="UTF-8">
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
        <title>丽春院 — 新闻详细</title>
        {include file="public/style"}
    </head>
    <body>
    <div id="page">
        {include file="public/head"}
        <div id="body">
            <div class="header">
                <div>
                    <h1 style="color: #6E6E6E; font-family: YouYuan; font-weight: bold">新闻详细</h1>
                    <div class="article">
                        <img src="{:GetPic($new.id)}" style="border-radius:10px; box-shadow: 0 0 5px #6E6E6E;   width: 560px;height: 240px;" alt="">
                        <div style="border-radius:10px; box-shadow: 0 0 5px #6E6E6E; background: #BDBDBD; padding: 20px;">
                            <h1 style=" text-align:center; color: #000;">{$new.title}</h1>
                            <span style="color: #0C0C0C">{$new.time|date="Y-m-d"}</span>
                            <p>{:htmlspecialchars_decode($new.content)}</p></div>
                    </div>
                    <div class="sidebar">
                        <ul>
                            {volist name="hotNews" id="hotNew"}
                            <li>
                                <h1>热门新闻</h1>
                                <a href="{:url('ConNew')}?id={$hotNew.id}"><img src="{:GetPic($hotNew.id)}" style="border-radius:10px; box-shadow: 0 0 5px #6E6E6E;   width: 340px;height: 188px;" alt=""></a>
                                <h2>{$hotNew.title}</h2>
                                <span>{$hotNew.desc}</span>
                            </li>
                            {/volist}
                            <li>
                                <h1>最新发布</h1>
                                <ul>
                                    {volist name="newNews" id="newNew"}
                                    <li>
                                        <a href="{:url('ConNew')}?id={$newNew.id}"><img src="{:GetPic($newNew.id)}" style="border-radius:10px; box-shadow: 0 0 2px #6E6E6E;   width: 60px;height: 55px;" alt=""></a>
                                        <h2 style="font-size: 15px;">{$newNew.title}</h2>
                                        <span>{$newNew.time|date="Y-m-d"}</span>
                                    </li>
                                    {/volist}
                                </ul>
                            </li>
                        </ul>
                    </div>
                </div>
            </div>
        </div>
        {include file="public/foot"}
    </div>
    </body>
    </html>

    5.about.html代码:

  6. <!doctype html>
    <html>
    <head>
        <meta charset="UTF-8">
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
        <title>丽春院 — 关于我们</title>
    {include file="/public/style"}
    </head>
    <body>
    <div id="page">
    {include file="/public/head"}
        <div id="body" class="about">
        {volist name="systems" id="system"}
            <div class="header">
                <div>
                    <h1 style="font-family: YouYuan;font-weight: bold;color: #FFFFFF;">关于我们</h1>
                    <h2>{$system.about_title}</h2>
                    <p>{$system.about_content}</p>
                </div>
            </div>
            <div class="body">
                <div>
                    <img src="__INDEX__/images/earth-satellite.jpg"  alt="">
                    <h2 style="color: #d5a8ab;  font-family: YouYuan; font-weight: bold;">{$system.ci_title}</h2>
                    <p style="color: #0C0C0C">{$system.ci_content}</p>
                </div>
            </div>
            <div class="footer">
                <div>
                    <img src="__INDEX__/images/space-shuttle.png" alt="" style="padding-bottom: 35px;">
                    <h2 style="color: #6b6565;">{$system.cp_title}</h2>
                    <p style="color: #0C0C0C">{$system.cp_content}</p>
                </div>
            </div>
            {/volist}
            <div class="section">
                <div>
                    <h2 style="color: #000000;  font-family: YouYuan; font-weight: bold;">丽春院百年老店</h2>
                    <p style="color: #0C0C0C">本着一心为客官服务的心做事、我们这里拥有十分美貌的姑娘和周到完美的服务!</p>
                </div>
            </div>
        </div>
    {include file="/public/foot"}
    
    </div>
    </body>
    </html>

    6.index.html

  7. <!doctype html>
    <html>
    <head>
        <meta charset="UTF-8">
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
        <title>丽春院 — 首页</title>
    {include file="/public/style"}
    {include file="/public/head"}
    <body>
    <div id="page">
        <div id="body" class="home">
            <div class="demo">
                <a class="control prev"></a><a class="control next abs"></a><!--自定义按钮,移动端可不写-->
                <div class="slider"><!--主体结构,请用此类名调用插件,此类名可自定义-->
                    <ul>
                       {volist name="slides" id="slide"}
                        <li><a href=""><img src="{$slide.pic}" alt="{$slide.desc}"/></a></li>
                       {/volist}
                    </ul>
                </div>
            </div>
            <div class="header">
                <div>
                    <h3 style="margin-top: 50px">头牌人选</h3>
                    <ul>
                    {volist name="products" id="product"}
                        <li><a href=" "><img src="{:GetProPic($product.id)}" style=" width: 100%;height: 100%;" alt=""></a>
                        </li>
                    {/volist}
                    </ul>
                </div>
            </div>
            <div class="body">
                <div>
                    <h1>丽春院百年老店</h1>
                    <p>为看官提供更养眼、更多样、更直观的感觉体验!</p>
                </div>
            </div>
            <div class="footer">
                <div>
                    <ul>
                        <li>
                            <h1>新上花魁</h1>{volist name="NewProduct" id="NewProducts"}
                            <a href=" ">
                            <img src="{:GetProPic($NewProducts.id)}"
                                             style="border-radius:10px; box-shadow: 0 0 10px #eaeaea;   border:5px solid #E9E7E7;width: 460px;height: 260px;"
                                             alt=""></a>{/volist}
                        </li>
                        <li>
                            <h1>最新资讯</h1>
                            <ul>
                                 {volist name="news" id="new"}
                                <li>
                                    <a href=""><img src="{:GetPic($new.id)}"
                                                    style="border-radius:10px; box-shadow: 0 0 10px #6E6E6E;   width: 100px;height: 95px;"
                                     					

    Correcting teacher:天蓬老师Correction time:2018-11-19 09:08:46
    Teacher's summary:不错,下次 提交的时候, 记得配上一个执行效果图, 会更好些

Release Notes

Popular Entries