物业服务
parent
7949196dd3
commit
3e33e15fe2
|
@ -22,6 +22,7 @@ Route::get('position/:id', "position/detail")->pattern(['id' => '\d+']);
|
|||
Route::get('/activity/:id', "article/detail")->pattern(['id' => '\d+']);
|
||||
Route::get('/news/:id', "article/detail")->pattern(['id' => '\d+']);
|
||||
Route::get('/service/:id', "article/detail")->pattern(['id' => '\d+']);
|
||||
Route::get('/market/:id', "article/detail")->pattern(['id' => '\d+']);
|
||||
Route::get('/product/detail/:id', "product/detail")->pattern(['id' => '\d+']);
|
||||
Route::rule('articles/ajaxlist', 'article/ajaxList', 'GET|POST');
|
||||
Route::get('articles/:category_id', "article/index");
|
||||
|
|
|
@ -0,0 +1,29 @@
|
|||
{layout name="layout" /}
|
||||
{php}
|
||||
use app\model\Category;
|
||||
$childrenMenu = Category::getChildrenByParentId($topCategoryId);
|
||||
{/php}
|
||||
|
||||
{include file="public/about_second" /}
|
||||
|
||||
<!-- 内容 -->
|
||||
<div class="pull-section pull-content-bg content-bg-white">
|
||||
<div class="activities-detail-txt market-detail-txt flex w1360 wow fadeInUp" data-wow-duration="0.8s" data-wow-delay="0">
|
||||
<div class="detail-top">
|
||||
<!-- 标题 -->
|
||||
<div class="detai-title">
|
||||
<h1 class="color-blue wow fadeInUp" data-wow-duration="0.8s" data-wow-delay="0">{$item.title}</h1>
|
||||
<div class="sub-bid wow fadeInUp" data-wow-duration="0.8s" data-wow-delay="0.2s">{$item.sub_title}</div>
|
||||
<a href="{$category['url'] ?: $category['route']}" class="back-btn wap-show flex">返回列表</a>
|
||||
</div>
|
||||
</div>
|
||||
<!-- 详情 -->
|
||||
<div class="rich-txt rich-txt-market wow fadeInUp" data-wow-duration="0.8s" data-wow-delay="0">
|
||||
{$item.content|raw}
|
||||
</div>
|
||||
<!-- <div class="market-atlas wow fadeInUp" data-wow-duration="0.8s" data-wow-delay="0">-->
|
||||
<!-- <div class="img wow fadeInUp" data-wow-duration="0.8s" data-wow-delay="0"><img src="images/market-activity.jpg" alt="详情"></div>-->
|
||||
<!-- <div class="img wow fadeInUp" data-wow-duration="0.8s" data-wow-delay="0"><img src="images/market-detail.png" alt="图集"></div>-->
|
||||
<!-- </div>-->
|
||||
</div>
|
||||
</div>
|
|
@ -15,7 +15,10 @@
|
|||
<a href="{$path['route'] ?? 'javascript:;'}">{$path['title'] ?? ''}</a>
|
||||
{/if}
|
||||
{/foreach}
|
||||
{$category.title ?? ''}
|
||||
{if $category['id'] != 40}
|
||||
<a href="{$category['route'] ?? 'javascript:;'}">{$category['title'] ?? ''}</a>
|
||||
{/if}
|
||||
{$Request.Action == 'detail' ? ($item.title ?? '') : ''}
|
||||
</div>
|
||||
</div>
|
||||
<!-- 二级导航 -->
|
||||
|
|
Loading…
Reference in New Issue