我也不知道自己调了什么
This commit is contained in:
@@ -67,7 +67,7 @@ class IndexController extends AdminController
|
|||||||
->removable()
|
->removable()
|
||||||
->uniqueName();
|
->uniqueName();
|
||||||
|
|
||||||
$form->ueditor('content', '文章内容')->rules('required', ['required' => '详情不能为空']);
|
$form->ueditor('content', '文章内容');
|
||||||
$form->number('sort', '序号')->default(0)->rules('required', ['required' => '序号必须填写'])->help('倒序优先');
|
$form->number('sort', '序号')->default(0)->rules('required', ['required' => '序号必须填写'])->help('倒序优先');
|
||||||
$form->switch('status', '状态')->default(1);
|
$form->switch('status', '状态')->default(1);
|
||||||
$form->text('url', '外链地址');
|
$form->text('url', '外链地址');
|
||||||
|
|||||||
48
app/Admin/Controllers/Article/TalentController.php
Normal file
48
app/Admin/Controllers/Article/TalentController.php
Normal file
@@ -0,0 +1,48 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
namespace App\Admin\Controllers\Article;
|
||||||
|
|
||||||
|
use App\Models\Category;
|
||||||
|
use App\Models\Patent;
|
||||||
|
use App\Models\Talent;
|
||||||
|
use Encore\Admin\Controllers\AdminController;
|
||||||
|
use Encore\Admin\Form;
|
||||||
|
use Encore\Admin\Grid;
|
||||||
|
|
||||||
|
class TalentController extends AdminController
|
||||||
|
{
|
||||||
|
|
||||||
|
protected $title = '领军人才梯队';
|
||||||
|
|
||||||
|
public function grid()
|
||||||
|
{
|
||||||
|
$grid = new Grid(new Talent());
|
||||||
|
$grid->model()->latest('sort');
|
||||||
|
$grid->column('id', '#ID#');
|
||||||
|
$grid->column('sort', '排序(倒序显示)')->editable();
|
||||||
|
$grid->column('title', '梯队名称');
|
||||||
|
$grid->column('leader', '带头人');
|
||||||
|
$grid->column('unleader', '后备带头人');
|
||||||
|
$grid->column('created_at', '创建时间');
|
||||||
|
|
||||||
|
return $grid;
|
||||||
|
}
|
||||||
|
|
||||||
|
public function form()
|
||||||
|
{
|
||||||
|
$form = new Form(new Talent());
|
||||||
|
|
||||||
|
$form->text('title', '梯队名称')->required();
|
||||||
|
$form->image('cover', '封面')
|
||||||
|
->move('images/' . date('Y/m/d'))
|
||||||
|
->removable()
|
||||||
|
->uniqueName();
|
||||||
|
$form->text('leader', '带头人')->required();
|
||||||
|
$form->text('unleader', '后备带头人')->required();
|
||||||
|
// $form->textarea('members', '梯队成员')->required();
|
||||||
|
$form->textarea('description', '梯队介绍')->required();
|
||||||
|
|
||||||
|
return $form;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -9,4 +9,5 @@ Route::group([
|
|||||||
], function (Router $router) {
|
], function (Router $router) {
|
||||||
$router->resource('articles', 'IndexController');
|
$router->resource('articles', 'IndexController');
|
||||||
$router->resource('patents', 'PatentController');
|
$router->resource('patents', 'PatentController');
|
||||||
|
$router->resource('talents', 'TalentController');
|
||||||
});
|
});
|
||||||
|
|||||||
@@ -4,6 +4,8 @@ use App\Models\Advert;
|
|||||||
use App\Models\Category;
|
use App\Models\Category;
|
||||||
use App\Models\Article;
|
use App\Models\Article;
|
||||||
use App\Models\Patent;
|
use App\Models\Patent;
|
||||||
|
use App\Models\Talent;
|
||||||
|
use Encore\Admin\Auth\Database\Menu;
|
||||||
|
|
||||||
function getOneCategory($categoryId, $return = '')
|
function getOneCategory($categoryId, $return = '')
|
||||||
{
|
{
|
||||||
@@ -109,3 +111,26 @@ function getOneAdvert($category_id, $value = '')
|
|||||||
|
|
||||||
return $info;
|
return $info;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
//获取人才数据
|
||||||
|
function getAllTalent()
|
||||||
|
{
|
||||||
|
return Talent::latest('sort')->get();
|
||||||
|
}
|
||||||
|
|
||||||
|
//获取一篇人才文章
|
||||||
|
function getOneRenById($article_id)
|
||||||
|
{
|
||||||
|
return Talent::find($article_id);
|
||||||
|
}
|
||||||
|
|
||||||
|
//获取分类信息
|
||||||
|
function getCate($id, $value = '')
|
||||||
|
{
|
||||||
|
$info = Menu::find($id);
|
||||||
|
if ($value) {
|
||||||
|
return $info->{$value};
|
||||||
|
}
|
||||||
|
|
||||||
|
return $info;
|
||||||
|
}
|
||||||
|
|||||||
@@ -19,7 +19,7 @@ class CategoryController extends Controller
|
|||||||
$parent = getTopCate($category->id);
|
$parent = getTopCate($category->id);
|
||||||
|
|
||||||
$template = array_flip(config('haai.category'));
|
$template = array_flip(config('haai.category'));
|
||||||
if (isset($template[$category->id])) {
|
if (isset($template[$category->id]) && !in_array($category->id, config('haai.no_list'))) {
|
||||||
return view('category.' . $template[$category->id], compact('category', 'parent'));
|
return view('category.' . $template[$category->id], compact('category', 'parent'));
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -46,6 +46,10 @@ class CategoryController extends Controller
|
|||||||
|
|
||||||
$parent = getTopCate($category->id);
|
$parent = getTopCate($category->id);
|
||||||
|
|
||||||
|
if (in_array($category->id, [55, 54]) && $category->children->isEmpty()) {
|
||||||
|
$parent = $category->parent;
|
||||||
|
}
|
||||||
|
|
||||||
return view($template, compact('category', 'parent', 'articles'));
|
return view($template, compact('category', 'parent', 'articles'));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -35,7 +35,7 @@ class IndexController extends Controller
|
|||||||
|
|
||||||
$data = [
|
$data = [
|
||||||
'ysxw' => Article::where('category_id', 15)->latest('sort')->latest()->take(8)->get(),
|
'ysxw' => Article::where('category_id', 15)->latest('sort')->latest()->take(8)->get(),
|
||||||
'kjcg' => Article::where('category_id', 20)->latest('sort')->latest()->take(8)->get(),
|
'kjcg' => Article::where('category_id', 19)->latest('sort')->latest()->take(8)->get(),
|
||||||
'lwzl' => Patent::latest('sort')->latest()->take(11)->get(),
|
'lwzl' => Patent::latest('sort')->latest()->take(11)->get(),
|
||||||
'center_advert' => Advert::latest('sort')->latest()->where('category_id', 23)->take(3)->get(),
|
'center_advert' => Advert::latest('sort')->latest()->where('category_id', 23)->take(3)->get(),
|
||||||
'ysxw_right_advert' => Advert::latest('sort')->latest()->where('category_id', 24)->first(),
|
'ysxw_right_advert' => Advert::latest('sort')->latest()->where('category_id', 24)->first(),
|
||||||
|
|||||||
11
app/Models/Talent.php
Normal file
11
app/Models/Talent.php
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
namespace App\Models;
|
||||||
|
|
||||||
|
use App\Models\Traits\HasOneCover;
|
||||||
|
|
||||||
|
class Talent extends Model
|
||||||
|
{
|
||||||
|
|
||||||
|
use HasOneCover;
|
||||||
|
}
|
||||||
@@ -3,14 +3,19 @@
|
|||||||
//整个网站配置 固定的也不需要放到后台了
|
//整个网站配置 固定的也不需要放到后台了
|
||||||
return [
|
return [
|
||||||
'category' => [
|
'category' => [
|
||||||
|
'jgsz' => 4,//组织机构
|
||||||
'zzjg' => 1,//组织机构
|
'zzjg' => 1,//组织机构
|
||||||
'kxyj' => 10,//科学研究
|
'kxyj' => 10,//科学研究
|
||||||
'cgzh' => 19,//成果展示
|
'cgzh' => 19,//成果展示
|
||||||
'rcdw' => 28,//人才队伍
|
'rcdw' => 28,//人才队伍
|
||||||
'djkxwh' => 31,//党建与科学文化
|
'djkxwh' => 31,//党建与科学文化
|
||||||
|
'gjzczj' => 29,//党建与科学文化
|
||||||
],
|
],
|
||||||
//分类使用的模板
|
//分类使用的模板
|
||||||
'template' => [
|
'template' => [
|
||||||
config('haai.category.zzjg') => 'category.zzjg',
|
config('haai.category.zzjg') => 'category.zzjg',
|
||||||
],
|
],
|
||||||
|
'no_list' => [
|
||||||
|
19,
|
||||||
|
],
|
||||||
];
|
];
|
||||||
@@ -0,0 +1,31 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
use Illuminate\Database\Migrations\Migration;
|
||||||
|
use Illuminate\Database\Schema\Blueprint;
|
||||||
|
use Illuminate\Support\Facades\Schema;
|
||||||
|
|
||||||
|
class CreateTalentTable extends Migration
|
||||||
|
{
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Run the migrations.
|
||||||
|
* @return void
|
||||||
|
*/
|
||||||
|
public function up()
|
||||||
|
{
|
||||||
|
Schema::create('talent', function (Blueprint $table) {
|
||||||
|
$table->id();
|
||||||
|
$table->timestamps();
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Reverse the migrations.
|
||||||
|
* @return void
|
||||||
|
*/
|
||||||
|
public function down()
|
||||||
|
{
|
||||||
|
Schema::dropIfExists('talent');
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
10146
public/vendor/ueditor/ueditor.all.js
vendored
10146
public/vendor/ueditor/ueditor.all.js
vendored
File diff suppressed because it is too large
Load Diff
44
resources/views/category/gjzczj.blade.php
Normal file
44
resources/views/category/gjzczj.blade.php
Normal file
@@ -0,0 +1,44 @@
|
|||||||
|
@extends('layouts.app')
|
||||||
|
|
||||||
|
@section('title', $category->title)
|
||||||
|
|
||||||
|
@section('content')
|
||||||
|
<!-- content -->
|
||||||
|
<div class="container mian">
|
||||||
|
<!-- content-nav -->
|
||||||
|
<nav class="mian-nav">
|
||||||
|
@include('category.left',$parent)
|
||||||
|
</nav>
|
||||||
|
<!-- content-content -->
|
||||||
|
<div class="mian-content">
|
||||||
|
<div class="mian-content-header">
|
||||||
|
<a href="#">首页</a>
|
||||||
|
<i class="fa fa-caret-right"></i>
|
||||||
|
<a href="{{ $category->link }}">{{ $category->title }}</a>
|
||||||
|
</div>
|
||||||
|
<!-- 高级职称专家 -->
|
||||||
|
<div class="rcdw-text">
|
||||||
|
<!-- 正高 -->
|
||||||
|
<div class="rcdw-text-item">
|
||||||
|
<b><i class="fa fa-chevron-circle-right"></i>正高:</b>
|
||||||
|
@if (getArticlesBYCate(64,16)->isNotEmpty())
|
||||||
|
@foreach (getArticlesBYCate(64,100) as $article)
|
||||||
|
<span data-href="{{ $article->link }}">{{ $article->title }}</span>
|
||||||
|
@endforeach
|
||||||
|
@endif
|
||||||
|
|
||||||
|
</div>
|
||||||
|
<!-- 副高 -->
|
||||||
|
<div class="rcdw-text-item">
|
||||||
|
<b><i class="fa fa-chevron-circle-right"></i>副高:</b>
|
||||||
|
@if (getArticlesBYCate(65,16)->isNotEmpty())
|
||||||
|
@foreach (getArticlesBYCate(65,100) as $article)
|
||||||
|
<span data-href="{{ $article->link }}">{{ $article->title }}</span>
|
||||||
|
@endforeach
|
||||||
|
@endif
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<!-- end content -->
|
||||||
|
@endsection
|
||||||
28
resources/views/category/jgsz.blade.php
Normal file
28
resources/views/category/jgsz.blade.php
Normal file
@@ -0,0 +1,28 @@
|
|||||||
|
@extends('layouts.app')
|
||||||
|
|
||||||
|
@section('title', $article->title)
|
||||||
|
|
||||||
|
|
||||||
|
@section('content')
|
||||||
|
<!-- content -->
|
||||||
|
<div class="container details">
|
||||||
|
<!-- 文章标题 -->
|
||||||
|
<h3 class="details-title">{{ $article->title }}</h3>
|
||||||
|
@if (in_array($parent->id,config('app.show_time')))
|
||||||
|
<p class="details-time">{{ $article->created_at }}</p>
|
||||||
|
@endif
|
||||||
|
<!-- 文章详情 -->
|
||||||
|
<div class="details-content">
|
||||||
|
{{-- <img src="{{ $article->cover_path }}">--}}
|
||||||
|
|
||||||
|
{!! $article->content !!}
|
||||||
|
</div>
|
||||||
|
<!-- 下一篇 -->
|
||||||
|
@if ($next)
|
||||||
|
<div class="details-writings">
|
||||||
|
|
||||||
|
<a href="{{ $next->link }}">下一篇:{{ $next->title }}</a>
|
||||||
|
</div>
|
||||||
|
@endif
|
||||||
|
</div>
|
||||||
|
@endsection
|
||||||
@@ -53,8 +53,10 @@
|
|||||||
<ul class="research-award-ul">
|
<ul class="research-award-ul">
|
||||||
@foreach (getArticlesBYCate(13,3) as $article)
|
@foreach (getArticlesBYCate(13,3) as $article)
|
||||||
<li data-href="{{ $article->link }}">
|
<li data-href="{{ $article->link }}">
|
||||||
<span class="research-award-cover" style="background-image: url({{ $article->cover_path }});"></span>
|
<span class="research-award-cover"
|
||||||
<h3 class="research-award-title nowrap" data-herf="{{ $article->link }}">{{ $article->title }}</h3>
|
style="background-image: url({{ $article->cover_path }});"></span>
|
||||||
|
<h3 class="research-award-title nowrap"
|
||||||
|
data-herf="{{ $article->link }}">{{ $article->title }}</h3>
|
||||||
</li>
|
</li>
|
||||||
@endforeach
|
@endforeach
|
||||||
</ul>
|
</ul>
|
||||||
@@ -65,34 +67,37 @@
|
|||||||
<ul class="kycc-border">
|
<ul class="kycc-border">
|
||||||
<li>
|
<li>
|
||||||
<div class="lw lw-lg">
|
<div class="lw lw-lg">
|
||||||
<div class="lw-left lw-left-lg" data-href="{{ route('patents.list',['type'=>'paper']) }}">
|
<div class="lw-left lw-left-lg" data-href="{{ getOneCategory(55,'link') }}">
|
||||||
论</br>文
|
论</br>文
|
||||||
</div>
|
</div>
|
||||||
<ul class="lw-center">
|
<ul class="lw-center">
|
||||||
@if(getPatent(8,'paper')->isNotEmpty())
|
@foreach (getArticlesBYCate(55,8) as $article)
|
||||||
@foreach (getPatent(8,'paper') as $paper)
|
|
||||||
<li class="nowrap">
|
<li class="nowrap">
|
||||||
<a href="{{ $paper->link }}">{{ $paper->title }}</a>
|
<a href="{{ $article->link }}">{{ $article->title }}</a>
|
||||||
</li>
|
</li>
|
||||||
@endforeach
|
@endforeach
|
||||||
@endif
|
|
||||||
</ul>
|
</ul>
|
||||||
|
<div class="lw-right lw-left-lg" data-href="{{ getOneCategory(55,'link') }}">
|
||||||
|
更</br>多
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<div class="lw lw-lg">
|
<div class="lw lw-lg">
|
||||||
<div class="lw-left lw-left-lg" data-href="{{ route('patents.list',['type'=>'patent']) }}">
|
<div class="lw-left lw-left-lg" data-href="{{ getOneCategory(54,'link') }}">
|
||||||
专</br>利
|
专</br>利
|
||||||
</div>
|
</div>
|
||||||
<ul class="lw-center">
|
<ul class="lw-center">
|
||||||
@if(getPatent(8,'patent')->isNotEmpty())
|
@foreach (getArticlesBYCate(54,8) as $article)
|
||||||
@foreach (getPatent(8,'patent') as $patent)
|
|
||||||
<li class="nowrap">
|
<li class="nowrap">
|
||||||
<a href="{{ $patent->link }}">{{ $patent->title }}</a>
|
{{ $article->title }}
|
||||||
</li>
|
</li>
|
||||||
@endforeach
|
@endforeach
|
||||||
@endif
|
|
||||||
</ul>
|
</ul>
|
||||||
|
<div class="lw-right lw-left-lg" data-href="{{ getOneCategory(54,'link') }}">
|
||||||
|
更</br>多
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
|
|||||||
@@ -35,7 +35,9 @@
|
|||||||
<a class="nowrap" href="{{ $article->link }}">
|
<a class="nowrap" href="{{ $article->link }}">
|
||||||
<i class="fa fa-angle-double-right"></i>
|
<i class="fa fa-angle-double-right"></i>
|
||||||
{{ $article->title }}
|
{{ $article->title }}
|
||||||
|
@if(!in_array($article->category_id,[55,54]))
|
||||||
<span>{{ $article->created_at->format('Y-m-d') }}</span>
|
<span>{{ $article->created_at->format('Y-m-d') }}</span>
|
||||||
|
@endif
|
||||||
</a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
@endforeach
|
@endforeach
|
||||||
|
|||||||
@@ -20,111 +20,72 @@
|
|||||||
<div class="sub-title">
|
<div class="sub-title">
|
||||||
<b><i class="fa fa-users"></i>{{ getOneCategory(29,'title') }}</b>
|
<b><i class="fa fa-users"></i>{{ getOneCategory(29,'title') }}</b>
|
||||||
</div>
|
</div>
|
||||||
<ul class="rcdw">
|
<div class="rcdw-text">
|
||||||
@if (getArticlesBYCate(29,16)->isNotEmpty())
|
<!-- 正高 -->
|
||||||
@foreach (getArticlesBYCate(29,16) as $article)
|
<div class="rcdw-text-item">
|
||||||
<li class="rcdw-xh" data-href="{{ $article->link }}">
|
<b><i class="fa fa-chevron-circle-right"></i>正高:</b>
|
||||||
<span class="rcdw-cover" style="background-image: url({{ $article->cover_path }});"></span>
|
@if (getArticlesBYCate(64,16)->isNotEmpty())
|
||||||
<div class="rcdw-xxh">
|
@foreach (getArticlesBYCate(64,100) as $article)
|
||||||
<h3>{{ $article->title }}</h3>
|
<span data-href="{{ $article->link }}">{{ $article->title }}</span>
|
||||||
<p>{{ $article->job }}</p>
|
|
||||||
</div>
|
|
||||||
</li>
|
|
||||||
@endforeach
|
@endforeach
|
||||||
@endif
|
@endif
|
||||||
</ul>
|
|
||||||
|
</div>
|
||||||
|
<!-- 副高 -->
|
||||||
|
<div class="rcdw-text-item">
|
||||||
|
<b><i class="fa fa-chevron-circle-right"></i>副高:</b>
|
||||||
|
@if (getArticlesBYCate(65,16)->isNotEmpty())
|
||||||
|
@foreach (getArticlesBYCate(65,100) as $article)
|
||||||
|
<span data-href="{{ $article->link }}">{{ $article->title }}</span>
|
||||||
|
@endforeach
|
||||||
|
@endif
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
{{-- <ul class="rcdw">--}}
|
||||||
|
{{-- @if (getArticlesBYCate(29,16)->isNotEmpty())--}}
|
||||||
|
{{-- @foreach (getArticlesBYCate(29,16) as $article)--}}
|
||||||
|
{{-- <li class="rcdw-xh" data-href="{{ $article->link }}">--}}
|
||||||
|
{{-- <span class="rcdw-cover" style="background-image: url({{ $article->cover_path }});"></span>--}}
|
||||||
|
{{-- <div class="rcdw-xxh">--}}
|
||||||
|
{{-- <h3>{{ $article->title }}</h3>--}}
|
||||||
|
{{-- <p>{{ $article->job }}</p>--}}
|
||||||
|
{{-- </div>--}}
|
||||||
|
{{-- </li>--}}
|
||||||
|
{{-- @endforeach--}}
|
||||||
|
{{-- @endif--}}
|
||||||
|
{{-- </ul>--}}
|
||||||
<!-- 省级领军人才梯队 -->
|
<!-- 省级领军人才梯队 -->
|
||||||
|
@if(getAllTalent()->isNotEmpty())
|
||||||
<div class="sub-title">
|
<div class="sub-title">
|
||||||
<b><i class="fa fa-line-chart"></i>{{ getOneCategory(30,'title') }}</b>
|
<b><i class="fa fa-line-chart"></i>{{ getCate(20,'title') }}</b>
|
||||||
</div>
|
</div>
|
||||||
|
@foreach(getAllTalent() as $talent)
|
||||||
<div class="rctd-boeder">
|
<div class="rctd-boeder">
|
||||||
<div class="rctd2" style="background-image: url({{ getOneCategory(51)->relations?getOneCategory(51)->relations->cover_path:'' }});"></div>
|
<div class="rctd2" style="background-image: url({{ $talent->cover_path }});"></div>
|
||||||
<p class="rctd3-p">
|
<p class="rctd3-p">
|
||||||
<span>梯队名称:</span>
|
<span>梯队名称:</span>
|
||||||
<span>控制科学与技术(共18人)</span>
|
<span>{{ $talent->title }}</span>
|
||||||
</p>
|
</p>
|
||||||
<p class="rctd3-p">
|
<p class="rctd3-p">
|
||||||
<span>带头人:</span>
|
<span>带头人:</span>
|
||||||
<span>吴冈</span>
|
<span>{{ $talent->leader }}</span>
|
||||||
</p>
|
</p>
|
||||||
<p class="rctd3-p">
|
<p class="rctd3-p">
|
||||||
<span>后备带头人:</span>
|
<span>后备带头人:</span>
|
||||||
<span>何艳 石磊</span>
|
<span>{{ $talent->unleader }}</span>
|
||||||
</p>
|
|
||||||
<p class="rctd3-p">
|
|
||||||
<span>梯队成员:</span>
|
|
||||||
{{-- <span>骆南</span>--}}
|
|
||||||
<span>吕汉</span>
|
|
||||||
<span>张文焱</span>
|
|
||||||
<span>郝明</span>
|
|
||||||
<span>孙凯明</span>
|
|
||||||
<span>宋昌江</span>
|
|
||||||
<span>丛晓丹</span>
|
|
||||||
<span>杨东亮</span>
|
|
||||||
<span>杨洋</span>
|
|
||||||
<span>费磊</span>
|
|
||||||
<span>高凤娇</span>
|
|
||||||
<span>朱国强</span>
|
|
||||||
<span>王刚</span>
|
|
||||||
<span>杨庆禹</span>
|
|
||||||
<span>李昕迪</span>
|
|
||||||
<span>王云龙</span>
|
|
||||||
{{-- <span>曹灿</span>--}}
|
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<p class="rctd3-p">
|
<p class="rctd3-p">
|
||||||
<span>梯队介绍:</span>
|
<span>梯队介绍:</span>
|
||||||
<span>控制科学与技术省级领军人才梯队,致力于以新一代信息技术实现传统制造业向智能制造的转型升级。主要研究方向:控制技术与自动化、光电精密测量、三维可视化与虚拟现实。在为黑龙江省区域经济发展作贡献的过程中不断提高学科层次和科研能力能力,建设高水平的技术团队,培养优秀科技人才。现有梯队成员18人,其中高级职称以上科技人员10人,具有硕士学位11人。近年来完成国家和省市科研项目30余项,其中省级以上项目6项,获得黑龙江省科技进步三等奖1项,获得授权国家发明专利4项、实用新型专利28项,发表学术论文50余篇,EI/SCI检索6篇。</span>
|
<span>
|
||||||
</p>
|
{{ $talent->description }}
|
||||||
</div>
|
</span>
|
||||||
<div class="rctd-boeder ">
|
|
||||||
<div class="rctd2" style="background-image: url({{ getOneCategory(52)->relations ?getOneCategory(52)->relations->cover_path:'' }});"></div>
|
|
||||||
<p class="rctd3-p">
|
|
||||||
<span>梯队名称:</span>
|
|
||||||
<span>计算机决策支持系统(共28+1人)</span>
|
|
||||||
</p>
|
|
||||||
<p class="rctd3-p">
|
|
||||||
<span>带头人:</span>
|
|
||||||
<span>刘彤军</span>
|
|
||||||
</p>
|
|
||||||
<p class="rctd3-p">
|
|
||||||
<span>后备带头人:</span>
|
|
||||||
<span>李中伟 朱明清</span>
|
|
||||||
</p>
|
|
||||||
<p class="rctd3-p">
|
|
||||||
<span>梯队成员:</span>
|
|
||||||
{{-- <span>李中伟</span>--}}
|
|
||||||
<span>巩伟</span>
|
|
||||||
<span>邓广龙</span>
|
|
||||||
<span>田晓英</span>
|
|
||||||
<span>田力</span>
|
|
||||||
<span>宋永江</span>
|
|
||||||
<span>周晓宇</span>
|
|
||||||
<span>张小平</span>
|
|
||||||
<span>李金波</span>
|
|
||||||
<span>牛健</span>
|
|
||||||
<span>王涛</span>
|
|
||||||
<span>周丽丽</span>
|
|
||||||
<span>杨喆</span>
|
|
||||||
<span>王金玉</span>
|
|
||||||
<span>张宇</span>
|
|
||||||
<span>李长武</span>
|
|
||||||
<span>钱冠华</span>
|
|
||||||
<span>吕宜光</span>
|
|
||||||
<span>孙永欣</span>
|
|
||||||
<span>张迁礼</span>
|
|
||||||
<span>林立鑫</span>
|
|
||||||
<span>张博文</span>
|
|
||||||
<span>李喜东</span>
|
|
||||||
<span>甄海涛</span>
|
|
||||||
<span>张建平</span>
|
|
||||||
<span>杨卓林</span>
|
|
||||||
<span>陈庆文</span>
|
|
||||||
</p>
|
|
||||||
<p class="rctd3-p">
|
|
||||||
<span>梯队介绍:</span>
|
|
||||||
<span>计算机决策支持系统省级领军人才梯队是在原省级重点学科管控一体化和控制理论与控制工程基础上创建发展的。目前围绕智能决策支持技术、大数据分析、人工智能和机器视觉等技术领域的科技创新为核心,开展科学研究、应用创新和人才培养工作,定位于打造黑龙江省本领域学术水平高、科研与转化实力强、创新能力突出的一流创新团队。现有梯队成员25人,其中高级职称以上科技人员11人,具有博士学位1人,硕士学位8人。近年来完成国家和省市科研项目40余项,获得黑龙江省科技进步二等奖1项、三等奖2项,获得授权国家发明专利8项、实用新型专利23项,发表学术论文60余篇。</span>
|
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
|
@endforeach
|
||||||
|
@endif
|
||||||
|
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<!-- end content -->
|
<!-- end content -->
|
||||||
|
|||||||
@@ -14,7 +14,8 @@
|
|||||||
@if ($center_advert->isNotEmpty())
|
@if ($center_advert->isNotEmpty())
|
||||||
@foreach ($center_advert as $advert)
|
@foreach ($center_advert as $advert)
|
||||||
<div class="swiper-slide">
|
<div class="swiper-slide">
|
||||||
<a class="swiper-banner-img" style="background-image: url({{ $advert->cover_path }});" href="@if($advert->url) {{ $advert->url }} @endif">
|
<a class="swiper-banner-img" style="background-image: url({{ $advert->cover_path }});"
|
||||||
|
href="@if($advert->url) {{ $advert->url }} @endif">
|
||||||
<h3>{{ $advert->title }}</h3>
|
<h3>{{ $advert->title }}</h3>
|
||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
@@ -38,7 +39,8 @@
|
|||||||
<div class="index-mian-news">
|
<div class="index-mian-news">
|
||||||
@if ($ysxw->isNotEmpty())
|
@if ($ysxw->isNotEmpty())
|
||||||
<div class="index-mian-news-hot">
|
<div class="index-mian-news-hot">
|
||||||
<a href="{{ $ysxw->first()->link }}" class="index-mian-news-cover" style="background-image: url({{ $ysxw->first()->cover_path }});"></a>
|
<a href="{{ $ysxw->first()->link }}" class="index-mian-news-cover"
|
||||||
|
style="background-image: url({{ $ysxw->first()->cover_path }});"></a>
|
||||||
<a href="{{ $ysxw->first()->link }}" class="index-mian-news-href">
|
<a href="{{ $ysxw->first()->link }}" class="index-mian-news-href">
|
||||||
<p class="nowrap-multi">{{ $ysxw->first()->title }}</p>
|
<p class="nowrap-multi">{{ $ysxw->first()->title }}</p>
|
||||||
<p class="nowrap">{{ $ysxw->first()->created_at->format('Y-m-d') }}</p>
|
<p class="nowrap">{{ $ysxw->first()->created_at->format('Y-m-d') }}</p>
|
||||||
@@ -60,15 +62,16 @@
|
|||||||
@endif
|
@endif
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
<!-- 科技成果 -->
|
<!-- 成果转化 -->
|
||||||
<div class="index-mian-title">
|
<div class="index-mian-title">
|
||||||
<span><i class="fa fa-flask"></i>{{ getOneCategory(20,'title') }}</span>
|
<span><i class="fa fa-flask"></i>{{ getOneCategory(19,'title') }}</span>
|
||||||
<a href="{{ getOneCategory(20,'link') }}">更多<i class="fa fa-plus"></i></a>
|
<a href="{{ getOneCategory(19,'link') }}">更多<i class="fa fa-plus"></i></a>
|
||||||
</div>
|
</div>
|
||||||
<div class="index-mian-news">
|
<div class="index-mian-news">
|
||||||
@if ($kjcg->isNotEmpty())
|
@if ($kjcg->isNotEmpty())
|
||||||
<div class="index-mian-news-hot">
|
<div class="index-mian-news-hot">
|
||||||
<a href="{{ $kjcg->first()->link }}" class="index-mian-news-cover" style="background-image: url({{ $kjcg->first()->cover_path }});"></a>
|
<a href="{{ $kjcg->first()->link }}" class="index-mian-news-cover"
|
||||||
|
style="background-image: url({{ $kjcg->first()->cover_path }});"></a>
|
||||||
<a href="{{ $kjcg->first()->link }}" class="index-mian-news-href">
|
<a href="{{ $kjcg->first()->link }}" class="index-mian-news-href">
|
||||||
<p class="nowrap-multi">{{ $kjcg->first()->title }}</p>
|
<p class="nowrap-multi">{{ $kjcg->first()->title }}</p>
|
||||||
<p class="nowrap">{{ $kjcg->first()->created_at->format('Y-m-d') }}</p>
|
<p class="nowrap">{{ $kjcg->first()->created_at->format('Y-m-d') }}</p>
|
||||||
@@ -89,37 +92,61 @@
|
|||||||
</ul>
|
</ul>
|
||||||
@endif
|
@endif
|
||||||
</div>
|
</div>
|
||||||
<!-- 论文专利 -->
|
<!-- 论文 -->
|
||||||
<div class="index-mian-title">
|
<div class="index-mian-title">
|
||||||
<span><i class="fa fa-suitcase"></i>论文专利</span>
|
<span><i class="fa fa fa-suitcase"></i>{{ getOneCategory(55,'title') }}</span>
|
||||||
<a href="{{ route('patents.list') }}">更多<i class="fa fa-plus"></i></a>
|
<a href="{{ getOneCategory(55,'link') }}">更多<i class="fa fa-plus"></i></a>
|
||||||
</div>
|
</div>
|
||||||
<div class="index-mian-news">
|
<div class="index-mian-news">
|
||||||
@if ($lwzl->isNotEmpty())
|
@if (getArticlesBYCate(55,8)->isNotEmpty())
|
||||||
<div class="index-mian-news-hot">
|
|
||||||
<a href="{{ $lwzl->first()->link }}" class="index-mian-news-cover" style="background-image: url({{ $lwzl->first()->cover_path }});"></a>
|
|
||||||
<a href="{{ $lwzl->first()->link }}" class="index-mian-news-href">
|
|
||||||
<p class="nowrap-multi">{{ $lwzl->first()->title }}</p>
|
|
||||||
<p class="nowrap">{{ $lwzl->first()->created_at->format('Y-m-d') }}</p>
|
|
||||||
</a>
|
|
||||||
</div>
|
|
||||||
<ul class="index-mian-news-ul">
|
<ul class="index-mian-news-ul">
|
||||||
@foreach ($lwzl as $info)
|
@foreach (getArticlesBYCate(55,8) as $article)
|
||||||
@if ($loop->iteration>1)
|
|
||||||
<li>
|
<li>
|
||||||
<a href="{{ $info->link }}" class="nowrap">
|
<a href="{{ $article->link }}" class="nowrap">
|
||||||
<i class="fa fa-chevron-circle-right"></i>
|
<i class="fa fa-chevron-circle-right"></i>
|
||||||
{{ $info->title }}
|
{{ $article->title }}
|
||||||
<span>{{ $info->created_at->format('Y-m-d') }}</span>
|
|
||||||
</a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
|
@endforeach
|
||||||
|
</ul>
|
||||||
@endif
|
@endif
|
||||||
|
</div>
|
||||||
|
<!-- 专利 -->
|
||||||
|
<div class="index-mian-title">
|
||||||
|
<span><i class="fa fa fa-suitcase"></i>{{ getOneCategory(54,'title') }}</span>
|
||||||
|
<a href="{{ getOneCategory(54,'link') }}">更多<i class="fa fa-plus"></i></a>
|
||||||
|
</div>
|
||||||
|
<div class="index-mian-news">
|
||||||
|
@if (getArticlesBYCate(54,8)->isNotEmpty())
|
||||||
|
<ul class="index-mian-news-ul">
|
||||||
|
@foreach (getArticlesBYCate(54,8) as $article)
|
||||||
|
<li>
|
||||||
|
<i class="fa fa-chevron-circle-right"></i>
|
||||||
|
{{ $article->title }}
|
||||||
|
</li>
|
||||||
@endforeach
|
@endforeach
|
||||||
</ul>
|
</ul>
|
||||||
@endif
|
@endif
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<!-- right -->
|
<!-- right -->
|
||||||
|
<!-- 通知公告 -->
|
||||||
|
<div class="index-mian-title">
|
||||||
|
<span><i class="fa fa-group"></i>{{ getOneCategory(63,'title') }}</span>
|
||||||
|
</div>
|
||||||
|
<ul class="index-mian-news-ul index-mian-right-ul">
|
||||||
|
@if (getArticlesBYCate(63,3)->isNotEmpty())
|
||||||
|
@foreach (getArticlesBYCate(63,3) as $article)
|
||||||
|
<li>
|
||||||
|
<a href="{{ $article->link }}" class="nowrap">
|
||||||
|
<i class="fa fa-chevron-circle-right"></i>
|
||||||
|
{{ $article->title }}
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
@endforeach
|
||||||
|
@endif
|
||||||
|
|
||||||
|
</ul>
|
||||||
<div class="index-mian-right">
|
<div class="index-mian-right">
|
||||||
<!-- 快速入口 -->
|
<!-- 快速入口 -->
|
||||||
@if(!empty($ysxw_right_advert))
|
@if(!empty($ysxw_right_advert))
|
||||||
@@ -144,7 +171,7 @@
|
|||||||
@endforeach
|
@endforeach
|
||||||
@endif
|
@endif
|
||||||
</div>
|
</div>
|
||||||
<!-- 学者风采 -->
|
<!-- 民主生活会 -->
|
||||||
<div class="index-mian-title">
|
<div class="index-mian-title">
|
||||||
<span><i class="fa fa-group"></i>{{ getOneCategory(57,'title') }}</span>
|
<span><i class="fa fa-group"></i>{{ getOneCategory(57,'title') }}</span>
|
||||||
</div>
|
</div>
|
||||||
@@ -174,7 +201,9 @@
|
|||||||
href="{{ $article->link }}">
|
href="{{ $article->link }}">
|
||||||
</a>
|
</a>
|
||||||
@else
|
@else
|
||||||
<a class="index-mian-right-video-item" style="background-image: url({{ $article->cover_path }});" href="{{ $article->link }}"></a>
|
<a class="index-mian-right-video-item"
|
||||||
|
style="background-image: url({{ $article->cover_path }});"
|
||||||
|
href="{{ $article->link }}"></a>
|
||||||
@endif
|
@endif
|
||||||
@endforeach
|
@endforeach
|
||||||
@endif
|
@endif
|
||||||
@@ -202,7 +231,7 @@
|
|||||||
<script type="text/javascript">
|
<script type="text/javascript">
|
||||||
// swiperBanner
|
// swiperBanner
|
||||||
var swiperBanner = new Swiper("#swiperBanner", {
|
var swiperBanner = new Swiper("#swiperBanner", {
|
||||||
autoplay: 3000,
|
autoplay: 5000,
|
||||||
centeredSlides: true,
|
centeredSlides: true,
|
||||||
loop: true,
|
loop: true,
|
||||||
slidesPerView: 'auto',
|
slidesPerView: 'auto',
|
||||||
|
|||||||
@@ -13,8 +13,8 @@
|
|||||||
@yield('js')
|
@yield('js')
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<!-- tool -->
|
<!-- tool -->
|
||||||
<div class="tool">
|
<div class="tool">
|
||||||
<div class="container tool-content">
|
<div class="container tool-content">
|
||||||
<div class="tool-herf">
|
<div class="tool-herf">
|
||||||
<a href="#">联系我们</a>
|
<a href="#">联系我们</a>
|
||||||
@@ -30,22 +30,22 @@
|
|||||||
</button>
|
</button>
|
||||||
</form>
|
</form>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<!-- end tool -->
|
<!-- end tool -->
|
||||||
<!-- header -->
|
<!-- header -->
|
||||||
<header class="header">
|
<header class="header">
|
||||||
<div class="container header-content">
|
<div class="container header-content">
|
||||||
<img class="header-logo" src="{{ asset('assets/index/img/logo.png') }}" alt="黑龙江省科学院智能制造研究所">
|
<img class="header-logo" src="{{ asset('assets/index/img/logo.png') }}" alt="黑龙江省科学院智能制造研究所">
|
||||||
<div class="header-text">
|
<div class="header-text">
|
||||||
<p>面向世界科技前沿,面向国家重大需求,面向国民经济主战场,面向人民生命健康,率先实现科学技术跨越发展,率先建成国家创新人才高地,率先建成国家高水平科技智库,率先建设国际一流科研机构。</p>
|
<p>卓越创新,智慧创造。</p>
|
||||||
<p class="header-text-sign">——智能制造所办所方针</p>
|
<p class="header-text-sign">——智能制造所办所训</p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</header>
|
</header>
|
||||||
<!-- end header -->
|
<!-- end header -->
|
||||||
|
|
||||||
<!-- Laytool -->
|
<!-- Laytool -->
|
||||||
<div class="laytool">
|
<div class="laytool">
|
||||||
<ul class="laytool-ul">
|
<ul class="laytool-ul">
|
||||||
<li>
|
<li>
|
||||||
<div class="wechat-code" class="wechat-code">
|
<div class="wechat-code" class="wechat-code">
|
||||||
@@ -53,16 +53,16 @@
|
|||||||
</div>
|
</div>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
<!-- end Laytool -->
|
<!-- end Laytool -->
|
||||||
|
|
||||||
@include('layouts.header')
|
@include('layouts.header')
|
||||||
|
|
||||||
@section('content')
|
@section('content')
|
||||||
|
|
||||||
@show
|
@show
|
||||||
|
|
||||||
@if ($links->isNotEmpty())
|
@if ($links->isNotEmpty())
|
||||||
<!-- href -->
|
<!-- href -->
|
||||||
<div class="footer-href">
|
<div class="footer-href">
|
||||||
<div class="container href-flex">
|
<div class="container href-flex">
|
||||||
@@ -72,23 +72,24 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<!-- end href -->
|
<!-- end href -->
|
||||||
@endif
|
@endif
|
||||||
<!-- footer -->
|
<!-- footer -->
|
||||||
<footer class="footer">
|
<footer class="footer">
|
||||||
<p>
|
<p>
|
||||||
版权所有:黑龙江省科学院智能制造研究所 <a target="_blank" href="https://beian.miit.gov.cn/" style="color: white">黑ICP备2020005648号</a>
|
版权所有:黑龙江省科学院智能制造研究所 <a target="_blank" href="https://beian.miit.gov.cn/"
|
||||||
|
style="color: white">黑ICP备2020005648号</a>
|
||||||
</p>
|
</p>
|
||||||
<p>地址:黑龙江省哈尔滨市南岗区汉水路165号 邮政编码:150090</p>
|
<p>地址:黑龙江省哈尔滨市南岗区汉水路165号 邮政编码:150090</p>
|
||||||
<p>电话:0451-82300045 eMail:webmaster@haai.com.cn</p>
|
<p>电话:0451-82300045 eMail:webmaster@haai.com.cn</p>
|
||||||
<p>© CopyRight 2020-2030,Heilongjiang Academy of Sciences Intelligent Manufacturing Research Institute.</p>
|
<p>© CopyRight 2020-2030,Heilongjiang Academy of Sciences Intelligent Manufacturing Research Institute.</p>
|
||||||
<script type="text/javascript">document.write(unescape("%3Cspan id='_ideConac' %3E%3C/span%3E%3Cscript src='http://dcs.conac.cn/js/10/000/0000/40685364/CA100000000406853640007.js' type='text/javascript'%3E%3C/script%3E"));</script>
|
<script type="text/javascript">document.write(unescape("%3Cspan id='_ideConac' %3E%3C/span%3E%3Cscript src='http://dcs.conac.cn/js/10/000/0000/40685364/CA100000000406853640007.js' type='text/javascript'%3E%3C/script%3E"));</script>
|
||||||
</footer>
|
</footer>
|
||||||
<!-- end footer -->
|
<!-- end footer -->
|
||||||
<!-- script -->
|
<!-- script -->
|
||||||
<script src="{{ asset('assets/index/js/jquery.min.js') }}" type="text/javascript" charset="utf-8"></script>
|
<script src="{{ asset('assets/index/js/jquery.min.js') }}" type="text/javascript" charset="utf-8"></script>
|
||||||
<script src="{{ asset('assets/index/js/swiper.min.js') }}" type="text/javascript" charset="utf-8"></script>
|
<script src="{{ asset('assets/index/js/swiper.min.js') }}" type="text/javascript" charset="utf-8"></script>
|
||||||
<script src="{{ asset('assets/index/js/cjango.js') }}" type="text/javascript" charset="utf-8"></script>
|
<script src="{{ asset('assets/index/js/cjango.js') }}" type="text/javascript" charset="utf-8"></script>
|
||||||
<script type="text/javascript">
|
<script type="text/javascript">
|
||||||
// 导航栏
|
// 导航栏
|
||||||
$(function () {
|
$(function () {
|
||||||
$("#nav").find("li").mouseenter(function () {
|
$("#nav").find("li").mouseenter(function () {
|
||||||
|
|||||||
@@ -7,334 +7,334 @@
|
|||||||
</li>
|
</li>
|
||||||
<li class="nav-ul-li @if (isset($parent) && $parent->id==config('haai.category.zzjg')) show @endif">
|
<li class="nav-ul-li @if (isset($parent) && $parent->id==config('haai.category.zzjg')) show @endif">
|
||||||
<a href=" {{ getOneCategory(config('haai.category.zzjg'),'link') }} ">{{ getOneCategory(config('haai.category.zzjg'),'title') }}</a>
|
<a href=" {{ getOneCategory(config('haai.category.zzjg'),'link') }} ">{{ getOneCategory(config('haai.category.zzjg'),'title') }}</a>
|
||||||
<div class="nav-layer hide">
|
{{-- <div class="nav-layer hide">--}}
|
||||||
<div class="nav-layer-item nav-org-left">
|
{{-- <div class="nav-layer-item nav-org-left">--}}
|
||||||
<!-- 研究所简介 -->
|
{{-- <!-- 研究所简介 -->--}}
|
||||||
<div class="nav-org-int">
|
{{-- <div class="nav-org-int">--}}
|
||||||
<div class="nav-layer-title">
|
|
||||||
<span>{{ getOneCategory(2,'title') }}</span>
|
|
||||||
</div>
|
|
||||||
<div class="nav-org-mian">
|
|
||||||
<div class="nav-org-cover">
|
|
||||||
<span style="background-image: url({{ getOneArticleBYCate(2)->cover_path }});"></span>
|
|
||||||
</div>
|
|
||||||
<p>
|
|
||||||
{{ getOneArticleBYCate(2)->description }}
|
|
||||||
</p>
|
|
||||||
<p class="nav-org-more"><a href="{{ getOneArticleBYCate(2,'link') }}">查看更多</a></p>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<!-- 领导班子 -->
|
|
||||||
<div class="nav-org-leadership">
|
|
||||||
<div class="nav-layer-title">
|
|
||||||
<span>{{ getOneCategory(3,'title') }}</span>
|
|
||||||
</div>
|
|
||||||
<ul class="nav-org-people">
|
|
||||||
@if (getArticlesBYCate(3,3)->isNotEmpty())
|
|
||||||
@foreach (getArticlesBYCate(3,3) as $article)
|
|
||||||
<li>
|
|
||||||
<a href="{{ $article->link }}">
|
|
||||||
<img src="{{ $article->cover_path }}">
|
|
||||||
<p class="nowrap">{{ $article->title }}</p>
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
@endforeach
|
|
||||||
@endif
|
|
||||||
</ul>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<div class="nav-layer-item nav-org-right">
|
|
||||||
<!-- 机构设置 -->
|
|
||||||
<div class="nav-layer-title ">
|
|
||||||
<span>{{ getOneCategory(4,'title') }}</span>
|
|
||||||
</div>
|
|
||||||
<ul class="nav-org-flex">
|
|
||||||
<li><a href="{{ getOneCategory(5,'link') }}">{{ getOneCategory(5,'title') }}</a></li>
|
|
||||||
<li><a href="{{ getOneCategory(6,'link') }}">{{ getOneCategory(6,'title') }}</a></li>
|
|
||||||
<li><a href="{{ getOneCategory(7,'link') }}">{{ getOneCategory(7,'title') }}</a></li>
|
|
||||||
<li><a href="{{ getOneCategory(8,'link') }}">{{ getOneCategory(8,'title') }}</a></li>
|
|
||||||
<li><a href="{{ getOneCategory(9,'link') }}">{{ getOneCategory(9,'title') }}</a></li>
|
|
||||||
</ul>
|
|
||||||
<div class="nav-layer-title"></div>
|
|
||||||
<ul class="nav-org-flex">
|
|
||||||
<li style="width: 100%;">
|
|
||||||
<a href="{{ getOneCategory(39,'link') }}">{{ getOneCategory(39,'title') }}</a></li>
|
|
||||||
<li>
|
|
||||||
<a href="{{ getOneCategory(37,'link') }}">{{ getOneCategory(37,'title') }}</a>
|
|
||||||
@if (getCateChild(37)->isNotEmpty())
|
|
||||||
@foreach (getCateChild(37) as $child)
|
|
||||||
<p><a href="{{ $child->link }}">{{ $child->title }}</a></p>
|
|
||||||
@endforeach
|
|
||||||
@endif
|
|
||||||
</li>
|
|
||||||
<li>
|
|
||||||
<a href="{{ getOneCategory(38,'link') }}">{{ getOneCategory(38,'title') }}</a>
|
|
||||||
@if (getCateChild(38)->isNotEmpty())
|
|
||||||
@foreach (getCateChild(38) as $child)
|
|
||||||
<p><a href="{{ $child->link }}">{{ $child->title }}</a></p>
|
|
||||||
@endforeach
|
|
||||||
@endif
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</li>
|
|
||||||
<li class="nav-ul-li @if (isset($parent) && $parent->id==config('haai.category.kxyj')) show @endif">
|
|
||||||
<a href="{{ getOneCategory(config('haai.category.kxyj'),'link') }}">{{ getOneCategory(config('haai.category.kxyj'),'title') }}</a>
|
|
||||||
<div class="nav-layer hide">
|
|
||||||
<div class="nav-layer-item nav-science-left">
|
|
||||||
<!-- 创新单元 -->
|
|
||||||
{{-- <div class="nav-layer-title">--}}
|
{{-- <div class="nav-layer-title">--}}
|
||||||
{{-- <span>{{ getOneCategory(11,'title') }}</span>--}}
|
{{-- <span>{{ getOneCategory(2,'title') }}</span>--}}
|
||||||
{{-- </div>--}}
|
{{-- </div>--}}
|
||||||
{{-- <div class="nav-science-block">--}}
|
{{-- <div class="nav-org-mian">--}}
|
||||||
{{-- <a class="nav-science-cover" href="#" style="background-image: url(/assets/index/img/banner_00.jpeg);"></a>--}}
|
{{-- <div class="nav-org-cover">--}}
|
||||||
{{-- <ul class="nav-science-ul">--}}
|
{{-- <span style="background-image: url({{ getOneArticleBYCate(2)->cover_path }});"></span>--}}
|
||||||
{{-- <li class="nowrap">--}}
|
|
||||||
{{-- <i class="fa fa-caret-right"></i>--}}
|
|
||||||
{{-- <a href="#">熔融沉积式工业3D打印机</a>--}}
|
|
||||||
{{-- </li>--}}
|
|
||||||
{{-- <li class="nowrap">--}}
|
|
||||||
{{-- <i class="fa fa-caret-right"></i>--}}
|
|
||||||
{{-- <a href="#">3D测量与打印技术研发与应用</a>--}}
|
|
||||||
{{-- </li>--}}
|
|
||||||
{{-- <li class="nowrap">--}}
|
|
||||||
{{-- <i class="fa fa-caret-right"></i>--}}
|
|
||||||
{{-- <a href="#">智能花光伏发电装置</a>--}}
|
|
||||||
{{-- </li>--}}
|
|
||||||
{{-- <li class="nowrap">--}}
|
|
||||||
{{-- <i class="fa fa-caret-right"></i>--}}
|
|
||||||
{{-- <a href="#">铝合金轻量化制造及试验生产线关键技术研究铝合金轻量化制造及试验生产线关键技术研究铝合金轻量化制造及试验生产线关键技术研究</a>--}}
|
|
||||||
{{-- </li>--}}
|
|
||||||
{{-- <li class="nowrap">--}}
|
|
||||||
{{-- <i class="fa fa-caret-right"></i>--}}
|
|
||||||
{{-- <a href="#">基于物联网技术的城市再生资源回收信息化技术</a>--}}
|
|
||||||
{{-- </li>--}}
|
|
||||||
{{-- </ul>--}}
|
|
||||||
{{-- </div>--}}
|
{{-- </div>--}}
|
||||||
<!-- 科技奖励 -->
|
{{-- <p>--}}
|
||||||
<div class="nav-layer-title">
|
{{-- {{ getOneArticleBYCate(2)->description }}--}}
|
||||||
<span>{{ getOneCategory(13,'title') }}</span>
|
{{-- </p>--}}
|
||||||
</div>
|
{{-- <p class="nav-org-more"><a href="{{ getOneArticleBYCate(2,'link') }}">查看更多</a></p>--}}
|
||||||
<div class="nav-science-block">
|
{{-- </div>--}}
|
||||||
@if(getArticlesBYCate(13,6)->isNotEmpty())
|
{{-- </div>--}}
|
||||||
@foreach (getArticlesBYCate(13,6) as $article)
|
{{-- <!-- 领导班子 -->--}}
|
||||||
@if ($loop->first)
|
{{-- <div class="nav-org-leadership">--}}
|
||||||
<a class="nav-science-cover" href="{{ $article->link }}" style="background-image: url({{ $article->cover_path }});">
|
|
||||||
</a>
|
|
||||||
@endif
|
|
||||||
@endforeach
|
|
||||||
<ul class="nav-science-ul">
|
|
||||||
@foreach (getArticlesBYCate(13,6) as $article)
|
|
||||||
@if ($loop->iteration>1)
|
|
||||||
<li class="nowrap">
|
|
||||||
<i class="fa fa-caret-right"></i>
|
|
||||||
<a href="{{ $article->link }}"> {{ $article->title }}</a>
|
|
||||||
</li>
|
|
||||||
@endif
|
|
||||||
@endforeach
|
|
||||||
</ul>
|
|
||||||
@endif
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<div class="nav-layer-item nav-science-right">
|
|
||||||
<!-- 科研产出 -->
|
|
||||||
<div class="nav-layer-title">
|
|
||||||
<span>{{ getOneCategory(12,'title') }}</span>
|
|
||||||
</div>
|
|
||||||
<div class="nav-science-covers">
|
|
||||||
@if(getCateChild(12)->isNotEmpty())
|
|
||||||
@foreach (getCateChild(12) as $children)
|
|
||||||
<a class="nav-science-covers-item nav-science-cover-10" href="{{ $children->link }}"
|
|
||||||
style="background-image: url({{ $children->cover_path }});"></a>
|
|
||||||
@endforeach
|
|
||||||
@endif
|
|
||||||
</div>
|
|
||||||
<!-- 科研进展 -->
|
|
||||||
{{-- <div class="nav-layer-title">--}}
|
{{-- <div class="nav-layer-title">--}}
|
||||||
{{-- <span>科研进展</span>--}}
|
{{-- <span>{{ getOneCategory(3,'title') }}</span>--}}
|
||||||
{{-- </div>--}}
|
{{-- </div>--}}
|
||||||
{{-- <ul class="nav-science-ul">--}}
|
{{-- <ul class="nav-org-people">--}}
|
||||||
{{-- <li class="nowrap">--}}
|
{{-- @if (getArticlesBYCate(3,3)->isNotEmpty())--}}
|
||||||
{{-- <i class="fa fa-caret-right"></i>--}}
|
{{-- @foreach (getArticlesBYCate(3,3) as $article)--}}
|
||||||
{{-- <a href="#">熔融沉积式工业3D打印机</a>--}}
|
|
||||||
{{-- </li>--}}
|
|
||||||
{{-- <li class="nowrap">--}}
|
|
||||||
{{-- <i class="fa fa-caret-right"></i>--}}
|
|
||||||
{{-- <a href="#">3D测量与打印技术研发与应用</a>--}}
|
|
||||||
{{-- </li>--}}
|
|
||||||
{{-- <li class="nowrap">--}}
|
|
||||||
{{-- <i class="fa fa-caret-right"></i>--}}
|
|
||||||
{{-- <a href="#">智能花光伏发电装置</a>--}}
|
|
||||||
{{-- </li>--}}
|
|
||||||
{{-- <li class="nowrap">--}}
|
|
||||||
{{-- <i class="fa fa-caret-right"></i>--}}
|
|
||||||
{{-- <a href="#">铝合金轻量化制造及试验生产线关键技术研究铝合金轻量化制造及试验生产线关键技术研究铝合金轻量化制造及试验生产线关键技术研究</a>--}}
|
|
||||||
{{-- </li>--}}
|
|
||||||
{{-- <li class="nowrap">--}}
|
|
||||||
{{-- <i class="fa fa-caret-right"></i>--}}
|
|
||||||
{{-- <a href="#">基于物联网技术的城市再生资源回收信息化技术</a>--}}
|
|
||||||
{{-- </li>--}}
|
|
||||||
{{-- </ul>--}}
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</li>
|
|
||||||
<li class="nav-ul-li @if (isset($parent) && $parent->id==config('haai.category.cgzh')) show @endif">
|
|
||||||
<a href="{{ getOneCategory(config('haai.category.cgzh'),'link') }}">{{ getOneCategory(config('haai.category.cgzh'),'title') }}</a>
|
|
||||||
<div class="nav-layer hide">
|
|
||||||
<div class="nav-layer-item nav-results-item">
|
|
||||||
<a class="nav-results-cover" style="background-image: url({{ getOneCategory(20,'cover_path') }});" href="{{ getOneCategory(20,'link') }}"></a>
|
|
||||||
<ul class="nav-science-ul nav-results-ul">
|
|
||||||
@if(getArticlesBYCate(20,5)->isNotEmpty())
|
|
||||||
@foreach (getArticlesBYCate(20,5) as $article)
|
|
||||||
<li class="nowrap">
|
|
||||||
<i class="fa fa-caret-right"></i>
|
|
||||||
<a href="{{ $article->link }}">
|
|
||||||
{{ $article->title }}
|
|
||||||
<span>{{ $article->created_at->format('Y-m-d') }}</span>
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
@endforeach
|
|
||||||
@endif
|
|
||||||
</ul>
|
|
||||||
</div>
|
|
||||||
<div class="nav-layer-item nav-results-item">
|
|
||||||
<a class="nav-results-cover" style="background-image: url({{ getOneCategory(21,'cover_path') }});" href="{{ getOneCategory(21,'link') }}"></a>
|
|
||||||
<ul class="nav-science-ul nav-results-ul">
|
|
||||||
@if(getArticlesBYCate(21,5)->isNotEmpty())
|
|
||||||
@foreach (getArticlesBYCate(21,5) as $article)
|
|
||||||
<li class="nowrap">
|
|
||||||
<i class="fa fa-caret-right"></i>
|
|
||||||
<a href="{{ $article->link }}">
|
|
||||||
{{ $article->title }}
|
|
||||||
<span>{{ $article->created_at->format('Y-m-d') }}</span>
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
@endforeach
|
|
||||||
@endif
|
|
||||||
</ul>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</li>
|
|
||||||
{{-- 人才队伍--}}
|
|
||||||
<li class="nav-ul-li @if (isset($parent) && $parent->id==config('haai.category.rcdw')) show @endif">
|
|
||||||
<a href="{{ getOneCategory(config('haai.category.rcdw'),'link') }}">{{ getOneCategory(config('haai.category.rcdw'),'title') }}</a>
|
|
||||||
<div class="nav-layer hide">
|
|
||||||
<div class="nav-layer-item nav-talent-left">
|
|
||||||
<!-- 高级职称专家 -->
|
|
||||||
{{-- <div class="nav-layer-title">--}}
|
|
||||||
{{-- <span>{{ getOneCategory(29,'title') }}</span>--}}
|
|
||||||
{{-- </div>--}}
|
|
||||||
{{-- <ul class="nav-talent-ul">--}}
|
|
||||||
{{-- @if (getArticlesBYCate(29,14)->isNotEmpty())--}}
|
|
||||||
{{-- @foreach (getArticlesBYCate(29,14) as $article)--}}
|
|
||||||
{{-- <li>--}}
|
{{-- <li>--}}
|
||||||
{{-- <a href="{{ $article->link }}">--}}
|
{{-- <a href="{{ $article->link }}">--}}
|
||||||
{{-- <span class="nav-talent-cover" style="background-image: url({{ $article->cover_path }});"></span>--}}
|
{{-- <img src="{{ $article->cover_path }}">--}}
|
||||||
{{-- <h3 class="nowrap nav-talent-name">{{ $article->title }}</h3>--}}
|
{{-- <p class="nowrap">{{ $article->title }}</p>--}}
|
||||||
{{-- <p class="nowrap nav-talent-job">{{ $article->job }}</p>--}}
|
|
||||||
{{-- </a>--}}
|
{{-- </a>--}}
|
||||||
{{-- </li>--}}
|
{{-- </li>--}}
|
||||||
{{-- @endforeach--}}
|
{{-- @endforeach--}}
|
||||||
{{-- @endif--}}
|
{{-- @endif--}}
|
||||||
{{-- </ul>--}}
|
{{-- </ul>--}}
|
||||||
<div style="text-align:center">
|
{{-- </div>--}}
|
||||||
<img src="{{ getOneAdvert(61,'cover_path') }}" style="width:100%;margin-top:17px" alt="">
|
{{-- </div>--}}
|
||||||
</div>
|
{{-- <div class="nav-layer-item nav-org-right">--}}
|
||||||
</div>
|
{{-- <!-- 机构设置 -->--}}
|
||||||
<div class="nav-layer-item nav-talent-right">
|
{{-- <div class="nav-layer-title ">--}}
|
||||||
<!-- 省级领军人才梯队 -->
|
{{-- <span>{{ getOneCategory(4,'title') }}</span>--}}
|
||||||
<div class="nav-layer-title">
|
{{-- </div>--}}
|
||||||
<span>{{ getOneCategory(30,'title') }}</span>
|
{{-- <ul class="nav-org-flex">--}}
|
||||||
</div>
|
{{-- <li><a href="{{ getOneCategory(5,'link') }}">{{ getOneCategory(5,'title') }}</a></li>--}}
|
||||||
<div class="nav-talent-team">
|
{{-- <li><a href="{{ getOneCategory(6,'link') }}">{{ getOneCategory(6,'title') }}</a></li>--}}
|
||||||
@if (getCateChild(30) && !empty(getCateChild(30)))
|
{{-- <li><a href="{{ getOneCategory(7,'link') }}">{{ getOneCategory(7,'title') }}</a></li>--}}
|
||||||
@foreach (getCateChild(30) as $children)
|
{{-- <li><a href="{{ getOneCategory(8,'link') }}">{{ getOneCategory(8,'title') }}</a></li>--}}
|
||||||
<a class="nav-talent-team-item" style="background-image: url({{ $children->cover_path }});" href="{{ $children->link }}"></a>
|
{{-- <li><a href="{{ getOneCategory(9,'link') }}">{{ getOneCategory(9,'title') }}</a></li>--}}
|
||||||
@endforeach
|
{{-- </ul>--}}
|
||||||
@endif
|
{{-- <div class="nav-layer-title"></div>--}}
|
||||||
@if (getOneCategory(58,'cover_path'))
|
{{-- <ul class="nav-org-flex">--}}
|
||||||
<a class="nav-talent-team-item" style="background-image: url({{ getOneCategory(58,'cover_path') }});" href="{{ getOneCategory(58,'link') }}"></a>
|
{{-- <li style="width: 100%;">--}}
|
||||||
@endif
|
{{-- <a href="{{ getOneCategory(39,'link') }}">{{ getOneCategory(39,'title') }}</a></li>--}}
|
||||||
|
{{-- <li>--}}
|
||||||
|
{{-- <a href="{{ getOneCategory(37,'link') }}">{{ getOneCategory(37,'title') }}</a>--}}
|
||||||
|
{{-- @if (getCateChild(37)->isNotEmpty())--}}
|
||||||
|
{{-- @foreach (getCateChild(37) as $child)--}}
|
||||||
|
{{-- <p><a href="{{ $child->link }}">{{ $child->title }}</a></p>--}}
|
||||||
|
{{-- @endforeach--}}
|
||||||
|
{{-- @endif--}}
|
||||||
|
{{-- </li>--}}
|
||||||
|
{{-- <li>--}}
|
||||||
|
{{-- <a href="{{ getOneCategory(38,'link') }}">{{ getOneCategory(38,'title') }}</a>--}}
|
||||||
|
{{-- @if (getCateChild(38)->isNotEmpty())--}}
|
||||||
|
{{-- @foreach (getCateChild(38) as $child)--}}
|
||||||
|
{{-- <p><a href="{{ $child->link }}">{{ $child->title }}</a></p>--}}
|
||||||
|
{{-- @endforeach--}}
|
||||||
|
{{-- @endif--}}
|
||||||
|
{{-- </li>--}}
|
||||||
|
{{-- </ul>--}}
|
||||||
|
{{-- </div>--}}
|
||||||
|
{{-- </div>--}}
|
||||||
|
</li>
|
||||||
|
<li class="nav-ul-li @if (isset($parent) && $parent->id==config('haai.category.kxyj')) show @endif">
|
||||||
|
<a href="{{ getOneCategory(config('haai.category.kxyj'),'link') }}">{{ getOneCategory(config('haai.category.kxyj'),'title') }}</a>
|
||||||
|
{{-- <div class="nav-layer hide">--}}
|
||||||
|
{{-- <div class="nav-layer-item nav-science-left">--}}
|
||||||
|
{{-- <!-- 创新单元 -->--}}
|
||||||
|
{{-- --}}{{-- <div class="nav-layer-title">--}}
|
||||||
|
{{-- --}}{{-- <span>{{ getOneCategory(11,'title') }}</span>--}}
|
||||||
|
{{-- --}}{{-- </div>--}}
|
||||||
|
{{-- --}}{{-- <div class="nav-science-block">--}}
|
||||||
|
{{-- --}}{{-- <a class="nav-science-cover" href="#" style="background-image: url(/assets/index/img/banner_00.jpeg);"></a>--}}
|
||||||
|
{{-- --}}{{-- <ul class="nav-science-ul">--}}
|
||||||
|
{{-- --}}{{-- <li class="nowrap">--}}
|
||||||
|
{{-- --}}{{-- <i class="fa fa-caret-right"></i>--}}
|
||||||
|
{{-- --}}{{-- <a href="#">熔融沉积式工业3D打印机</a>--}}
|
||||||
|
{{-- --}}{{-- </li>--}}
|
||||||
|
{{-- --}}{{-- <li class="nowrap">--}}
|
||||||
|
{{-- --}}{{-- <i class="fa fa-caret-right"></i>--}}
|
||||||
|
{{-- --}}{{-- <a href="#">3D测量与打印技术研发与应用</a>--}}
|
||||||
|
{{-- --}}{{-- </li>--}}
|
||||||
|
{{-- --}}{{-- <li class="nowrap">--}}
|
||||||
|
{{-- --}}{{-- <i class="fa fa-caret-right"></i>--}}
|
||||||
|
{{-- --}}{{-- <a href="#">智能花光伏发电装置</a>--}}
|
||||||
|
{{-- --}}{{-- </li>--}}
|
||||||
|
{{-- --}}{{-- <li class="nowrap">--}}
|
||||||
|
{{-- --}}{{-- <i class="fa fa-caret-right"></i>--}}
|
||||||
|
{{-- --}}{{-- <a href="#">铝合金轻量化制造及试验生产线关键技术研究铝合金轻量化制造及试验生产线关键技术研究铝合金轻量化制造及试验生产线关键技术研究</a>--}}
|
||||||
|
{{-- --}}{{-- </li>--}}
|
||||||
|
{{-- --}}{{-- <li class="nowrap">--}}
|
||||||
|
{{-- --}}{{-- <i class="fa fa-caret-right"></i>--}}
|
||||||
|
{{-- --}}{{-- <a href="#">基于物联网技术的城市再生资源回收信息化技术</a>--}}
|
||||||
|
{{-- --}}{{-- </li>--}}
|
||||||
|
{{-- --}}{{-- </ul>--}}
|
||||||
|
{{-- --}}{{-- </div>--}}
|
||||||
|
{{-- <!-- 科技奖励 -->--}}
|
||||||
|
{{-- <div class="nav-layer-title">--}}
|
||||||
|
{{-- <span>{{ getOneCategory(13,'title') }}</span>--}}
|
||||||
|
{{-- </div>--}}
|
||||||
|
{{-- <div class="nav-science-block">--}}
|
||||||
|
{{-- @if(getArticlesBYCate(13,6)->isNotEmpty())--}}
|
||||||
|
{{-- @foreach (getArticlesBYCate(13,6) as $article)--}}
|
||||||
|
{{-- @if ($loop->first)--}}
|
||||||
|
{{-- <a class="nav-science-cover" href="{{ $article->link }}" style="background-image: url({{ $article->cover_path }});">--}}
|
||||||
|
{{-- </a>--}}
|
||||||
|
{{-- @endif--}}
|
||||||
|
{{-- @endforeach--}}
|
||||||
|
{{-- <ul class="nav-science-ul">--}}
|
||||||
|
{{-- @foreach (getArticlesBYCate(13,6) as $article)--}}
|
||||||
|
{{-- @if ($loop->iteration>1)--}}
|
||||||
|
{{-- <li class="nowrap">--}}
|
||||||
|
{{-- <i class="fa fa-caret-right"></i>--}}
|
||||||
|
{{-- <a href="{{ $article->link }}"> {{ $article->title }}</a>--}}
|
||||||
|
{{-- </li>--}}
|
||||||
|
{{-- @endif--}}
|
||||||
|
{{-- @endforeach--}}
|
||||||
|
{{-- </ul>--}}
|
||||||
|
{{-- @endif--}}
|
||||||
|
{{-- </div>--}}
|
||||||
|
{{-- </div>--}}
|
||||||
|
{{-- <div class="nav-layer-item nav-science-right">--}}
|
||||||
|
{{-- <!-- 科研产出 -->--}}
|
||||||
|
{{-- <div class="nav-layer-title">--}}
|
||||||
|
{{-- <span>{{ getOneCategory(12,'title') }}</span>--}}
|
||||||
|
{{-- </div>--}}
|
||||||
|
{{-- <div class="nav-science-covers">--}}
|
||||||
|
{{-- @if(getCateChild(12)->isNotEmpty())--}}
|
||||||
|
{{-- @foreach (getCateChild(12) as $children)--}}
|
||||||
|
{{-- <a class="nav-science-covers-item nav-science-cover-10" href="{{ $children->link }}"--}}
|
||||||
|
{{-- style="background-image: url({{ $children->cover_path }});"></a>--}}
|
||||||
|
{{-- @endforeach--}}
|
||||||
|
{{-- @endif--}}
|
||||||
|
{{-- </div>--}}
|
||||||
|
{{-- <!-- 科研进展 -->--}}
|
||||||
|
{{-- --}}{{-- <div class="nav-layer-title">--}}
|
||||||
|
{{-- --}}{{-- <span>科研进展</span>--}}
|
||||||
|
{{-- --}}{{-- </div>--}}
|
||||||
|
{{-- --}}{{-- <ul class="nav-science-ul">--}}
|
||||||
|
{{-- --}}{{-- <li class="nowrap">--}}
|
||||||
|
{{-- --}}{{-- <i class="fa fa-caret-right"></i>--}}
|
||||||
|
{{-- --}}{{-- <a href="#">熔融沉积式工业3D打印机</a>--}}
|
||||||
|
{{-- --}}{{-- </li>--}}
|
||||||
|
{{-- --}}{{-- <li class="nowrap">--}}
|
||||||
|
{{-- --}}{{-- <i class="fa fa-caret-right"></i>--}}
|
||||||
|
{{-- --}}{{-- <a href="#">3D测量与打印技术研发与应用</a>--}}
|
||||||
|
{{-- --}}{{-- </li>--}}
|
||||||
|
{{-- --}}{{-- <li class="nowrap">--}}
|
||||||
|
{{-- --}}{{-- <i class="fa fa-caret-right"></i>--}}
|
||||||
|
{{-- --}}{{-- <a href="#">智能花光伏发电装置</a>--}}
|
||||||
|
{{-- --}}{{-- </li>--}}
|
||||||
|
{{-- --}}{{-- <li class="nowrap">--}}
|
||||||
|
{{-- --}}{{-- <i class="fa fa-caret-right"></i>--}}
|
||||||
|
{{-- --}}{{-- <a href="#">铝合金轻量化制造及试验生产线关键技术研究铝合金轻量化制造及试验生产线关键技术研究铝合金轻量化制造及试验生产线关键技术研究</a>--}}
|
||||||
|
{{-- --}}{{-- </li>--}}
|
||||||
|
{{-- --}}{{-- <li class="nowrap">--}}
|
||||||
|
{{-- --}}{{-- <i class="fa fa-caret-right"></i>--}}
|
||||||
|
{{-- --}}{{-- <a href="#">基于物联网技术的城市再生资源回收信息化技术</a>--}}
|
||||||
|
{{-- --}}{{-- </li>--}}
|
||||||
|
{{-- --}}{{-- </ul>--}}
|
||||||
|
{{-- </div>--}}
|
||||||
|
{{-- </div>--}}
|
||||||
|
</li>
|
||||||
|
<li class="nav-ul-li @if (isset($parent) && $parent->id==config('haai.category.cgzh')) show @endif">
|
||||||
|
<a href="{{ getOneCategory(config('haai.category.cgzh'),'link') }}">{{ getOneCategory(config('haai.category.cgzh'),'title') }}</a>
|
||||||
|
{{-- <div class="nav-layer hide">--}}
|
||||||
|
{{-- <div class="nav-layer-item nav-results-item">--}}
|
||||||
|
{{-- <a class="nav-results-cover" style="background-image: url({{ getOneCategory(20,'cover_path') }});" href="{{ getOneCategory(20,'link') }}"></a>--}}
|
||||||
|
{{-- <ul class="nav-science-ul nav-results-ul">--}}
|
||||||
|
{{-- @if(getArticlesBYCate(20,5)->isNotEmpty())--}}
|
||||||
|
{{-- @foreach (getArticlesBYCate(20,5) as $article)--}}
|
||||||
|
{{-- <li class="nowrap">--}}
|
||||||
|
{{-- <i class="fa fa-caret-right"></i>--}}
|
||||||
|
{{-- <a href="{{ $article->link }}">--}}
|
||||||
|
{{-- {{ $article->title }}--}}
|
||||||
|
{{-- <span>{{ $article->created_at->format('Y-m-d') }}</span>--}}
|
||||||
|
{{-- </a>--}}
|
||||||
|
{{-- </li>--}}
|
||||||
|
{{-- @endforeach--}}
|
||||||
|
{{-- @endif--}}
|
||||||
|
{{-- </ul>--}}
|
||||||
|
{{-- </div>--}}
|
||||||
|
{{-- <div class="nav-layer-item nav-results-item">--}}
|
||||||
|
{{-- <a class="nav-results-cover" style="background-image: url({{ getOneCategory(21,'cover_path') }});" href="{{ getOneCategory(21,'link') }}"></a>--}}
|
||||||
|
{{-- <ul class="nav-science-ul nav-results-ul">--}}
|
||||||
|
{{-- @if(getArticlesBYCate(21,5)->isNotEmpty())--}}
|
||||||
|
{{-- @foreach (getArticlesBYCate(21,5) as $article)--}}
|
||||||
|
{{-- <li class="nowrap">--}}
|
||||||
|
{{-- <i class="fa fa-caret-right"></i>--}}
|
||||||
|
{{-- <a href="{{ $article->link }}">--}}
|
||||||
|
{{-- {{ $article->title }}--}}
|
||||||
|
{{-- <span>{{ $article->created_at->format('Y-m-d') }}</span>--}}
|
||||||
|
{{-- </a>--}}
|
||||||
|
{{-- </li>--}}
|
||||||
|
{{-- @endforeach--}}
|
||||||
|
{{-- @endif--}}
|
||||||
|
{{-- </ul>--}}
|
||||||
|
{{-- </div>--}}
|
||||||
|
{{-- </div>--}}
|
||||||
|
</li>
|
||||||
|
{{-- 人才队伍--}}
|
||||||
|
<li class="nav-ul-li @if (isset($parent) && $parent->id==config('haai.category.rcdw')) show @endif">
|
||||||
|
<a href="{{ getOneCategory(config('haai.category.rcdw'),'link') }}">{{ getOneCategory(config('haai.category.rcdw'),'title') }}</a>
|
||||||
|
{{-- <div class="nav-layer hide">--}}
|
||||||
|
{{-- <div class="nav-layer-item nav-talent-left">--}}
|
||||||
|
{{-- <!-- 高级职称专家 -->--}}
|
||||||
|
{{-- --}}{{-- <div class="nav-layer-title">--}}
|
||||||
|
{{-- --}}{{-- <span>{{ getOneCategory(29,'title') }}</span>--}}
|
||||||
|
{{-- --}}{{-- </div>--}}
|
||||||
|
{{-- --}}{{-- <ul class="nav-talent-ul">--}}
|
||||||
|
{{-- --}}{{-- @if (getArticlesBYCate(29,14)->isNotEmpty())--}}
|
||||||
|
{{-- --}}{{-- @foreach (getArticlesBYCate(29,14) as $article)--}}
|
||||||
|
{{-- --}}{{-- <li>--}}
|
||||||
|
{{-- --}}{{-- <a href="{{ $article->link }}">--}}
|
||||||
|
{{-- --}}{{-- <span class="nav-talent-cover" style="background-image: url({{ $article->cover_path }});"></span>--}}
|
||||||
|
{{-- --}}{{-- <h3 class="nowrap nav-talent-name">{{ $article->title }}</h3>--}}
|
||||||
|
{{-- --}}{{-- <p class="nowrap nav-talent-job">{{ $article->job }}</p>--}}
|
||||||
|
{{-- --}}{{-- </a>--}}
|
||||||
|
{{-- --}}{{-- </li>--}}
|
||||||
|
{{-- --}}{{-- @endforeach--}}
|
||||||
|
{{-- --}}{{-- @endif--}}
|
||||||
|
{{-- --}}{{-- </ul>--}}
|
||||||
|
{{-- <div style="text-align:center">--}}
|
||||||
|
{{-- <img src="{{ getOneAdvert(61,'cover_path') }}" style="width:100%;margin-top:17px" alt="">--}}
|
||||||
|
{{-- </div>--}}
|
||||||
|
{{-- </div>--}}
|
||||||
|
{{-- <div class="nav-layer-item nav-talent-right">--}}
|
||||||
|
{{-- <!-- 省级领军人才梯队 -->--}}
|
||||||
|
{{-- <div class="nav-layer-title">--}}
|
||||||
|
{{-- <span>{{ getOneCategory(30,'title') }}</span>--}}
|
||||||
|
{{-- </div>--}}
|
||||||
|
{{-- <div class="nav-talent-team">--}}
|
||||||
|
{{-- @if (getCateChild(30) && !empty(getCateChild(30)))--}}
|
||||||
|
{{-- @foreach (getCateChild(30) as $children)--}}
|
||||||
|
{{-- <a class="nav-talent-team-item" style="background-image: url({{ $children->cover_path }});" href="{{ $children->link }}"></a>--}}
|
||||||
|
{{-- @endforeach--}}
|
||||||
|
{{-- @endif--}}
|
||||||
|
{{-- @if (getOneCategory(58,'cover_path'))--}}
|
||||||
|
{{-- <a class="nav-talent-team-item" style="background-image: url({{ getOneCategory(58,'cover_path') }});" href="{{ getOneCategory(58,'link') }}"></a>--}}
|
||||||
|
{{-- @endif--}}
|
||||||
|
|
||||||
</div>
|
{{-- </div>--}}
|
||||||
</div>
|
{{-- </div>--}}
|
||||||
</div>
|
{{-- </div>--}}
|
||||||
</li>
|
</li>
|
||||||
<li class="nav-ul-li @if (isset($parent) && $parent->id==config('haai.category.djkxwh')) show @endif">
|
<li class="nav-ul-li @if (isset($parent) && $parent->id==config('haai.category.djkxwh')) show @endif">
|
||||||
<a href="{{ getOneCategory(config('haai.category.djkxwh'),'link') }}">{{ getOneCategory(config('haai.category.djkxwh'),'title') }}</a>
|
<a href="{{ getOneCategory(config('haai.category.djkxwh'),'link') }}">{{ getOneCategory(config('haai.category.djkxwh'),'title') }}</a>
|
||||||
<div class="nav-layer hide">
|
{{-- <div class="nav-layer hide">--}}
|
||||||
<div class="nav-layer-item nav-science-left">
|
{{-- <div class="nav-layer-item nav-science-left">--}}
|
||||||
<!-- 工作动态 -->
|
{{-- <!-- 工作动态 -->--}}
|
||||||
<div class="nav-layer-title">
|
{{-- <div class="nav-layer-title">--}}
|
||||||
<span>{{ getOneCategory(32,'title') }}</span>
|
{{-- <span>{{ getOneCategory(32,'title') }}</span>--}}
|
||||||
</div>
|
{{-- </div>--}}
|
||||||
<div class="nav-science-block">
|
{{-- <div class="nav-science-block">--}}
|
||||||
@if(getArticlesBYCate(32,6)->isNotEmpty())
|
{{-- @if(getArticlesBYCate(32,6)->isNotEmpty())--}}
|
||||||
@foreach (getArticlesBYCate(32,6) as $article)
|
{{-- @foreach (getArticlesBYCate(32,6) as $article)--}}
|
||||||
@if ($loop->first)
|
{{-- @if ($loop->first)--}}
|
||||||
<a class="nav-science-cover" href="{{ $article->link }}" style="background-image: url({{ $article->cover_path }});">
|
{{-- <a class="nav-science-cover" href="{{ $article->link }}" style="background-image: url({{ $article->cover_path }});">--}}
|
||||||
</a>
|
{{-- </a>--}}
|
||||||
@endif
|
{{-- @endif--}}
|
||||||
@endforeach
|
{{-- @endforeach--}}
|
||||||
<ul class="nav-science-ul">
|
{{-- <ul class="nav-science-ul">--}}
|
||||||
@foreach (getArticlesBYCate(32,6) as $article)
|
{{-- @foreach (getArticlesBYCate(32,6) as $article)--}}
|
||||||
@if ($loop->iteration>1)
|
{{-- @if ($loop->iteration>1)--}}
|
||||||
<li class="nowrap">
|
{{-- <li class="nowrap">--}}
|
||||||
<i class="fa fa-caret-right"></i>
|
{{-- <i class="fa fa-caret-right"></i>--}}
|
||||||
<a href="{{ $article->link }}"> {{ $article->title }}</a>
|
{{-- <a href="{{ $article->link }}"> {{ $article->title }}</a>--}}
|
||||||
</li>
|
{{-- </li>--}}
|
||||||
@endif
|
{{-- @endif--}}
|
||||||
@endforeach
|
{{-- @endforeach--}}
|
||||||
</ul>
|
{{-- </ul>--}}
|
||||||
@endif
|
{{-- @endif--}}
|
||||||
|
|
||||||
</div>
|
{{-- </div>--}}
|
||||||
<!-- 反腐倡廉 -->
|
{{-- <!-- 反腐倡廉 -->--}}
|
||||||
<div class="nav-layer-title">
|
{{-- <div class="nav-layer-title">--}}
|
||||||
<span>{{ getOneCategory(33,'title') }}</span>
|
{{-- <span>{{ getOneCategory(33,'title') }}</span>--}}
|
||||||
</div>
|
{{-- </div>--}}
|
||||||
<div class="nav-science-block">
|
{{-- <div class="nav-science-block">--}}
|
||||||
@if(getArticlesBYCate(33,6)->isNotEmpty())
|
{{-- @if(getArticlesBYCate(33,6)->isNotEmpty())--}}
|
||||||
@foreach (getArticlesBYCate(33,6) as $article)
|
{{-- @foreach (getArticlesBYCate(33,6) as $article)--}}
|
||||||
@if ($loop->first)
|
{{-- @if ($loop->first)--}}
|
||||||
<a class="nav-science-cover" href="{{ $article->link }}" style="background-image: url({{ $article->cover_path }});">
|
{{-- <a class="nav-science-cover" href="{{ $article->link }}" style="background-image: url({{ $article->cover_path }});">--}}
|
||||||
</a>
|
{{-- </a>--}}
|
||||||
@endif
|
{{-- @endif--}}
|
||||||
@endforeach
|
{{-- @endforeach--}}
|
||||||
<ul class="nav-science-ul">
|
{{-- <ul class="nav-science-ul">--}}
|
||||||
@foreach (getArticlesBYCate(33,6) as $article)
|
{{-- @foreach (getArticlesBYCate(33,6) as $article)--}}
|
||||||
@if ($loop->iteration>1)
|
{{-- @if ($loop->iteration>1)--}}
|
||||||
<li class="nowrap">
|
{{-- <li class="nowrap">--}}
|
||||||
<i class="fa fa-caret-right"></i>
|
{{-- <i class="fa fa-caret-right"></i>--}}
|
||||||
<a href="{{ $article->link }}"> {{ $article->title }}</a>
|
{{-- <a href="{{ $article->link }}"> {{ $article->title }}</a>--}}
|
||||||
</li>
|
{{-- </li>--}}
|
||||||
@endif
|
{{-- @endif--}}
|
||||||
@endforeach
|
{{-- @endforeach--}}
|
||||||
</ul>
|
{{-- </ul>--}}
|
||||||
@endif
|
{{-- @endif--}}
|
||||||
|
|
||||||
</div>
|
{{-- </div>--}}
|
||||||
</div>
|
{{-- </div>--}}
|
||||||
<div class="nav-layer-item nav-science-right">
|
{{-- <div class="nav-layer-item nav-science-right">--}}
|
||||||
<!-- 先进事迹 -->
|
{{-- <!-- 先进事迹 -->--}}
|
||||||
<div class="nav-layer-title">
|
{{-- <div class="nav-layer-title">--}}
|
||||||
<span>{{ getOneCategory(34,'title') }}</span>
|
{{-- <span>{{ getOneCategory(34,'title') }}</span>--}}
|
||||||
</div>
|
{{-- </div>--}}
|
||||||
<ul class="nav-science-ul">
|
{{-- <ul class="nav-science-ul">--}}
|
||||||
@if(getArticlesBYCate(34,8)->isNotEmpty())
|
{{-- @if(getArticlesBYCate(34,8)->isNotEmpty())--}}
|
||||||
@foreach (getArticlesBYCate(34,8) as $article)
|
{{-- @foreach (getArticlesBYCate(34,8) as $article)--}}
|
||||||
<li class="nowrap">
|
{{-- <li class="nowrap">--}}
|
||||||
<i class="fa fa-caret-right"></i>
|
{{-- <i class="fa fa-caret-right"></i>--}}
|
||||||
<a href="{{ $article->link }}">{{ $article->title }}</a>
|
{{-- <a href="{{ $article->link }}">{{ $article->title }}</a>--}}
|
||||||
</li>
|
{{-- </li>--}}
|
||||||
@endforeach
|
{{-- @endforeach--}}
|
||||||
@endif
|
{{-- @endif--}}
|
||||||
|
|
||||||
</ul>
|
{{-- </ul>--}}
|
||||||
<a class="nav-results-cover" style="background-image: url({{ getOneCategory(59,'cover_path') }});" href="{{ getOneCategory(59,'link') }}"></a>
|
{{-- <a class="nav-results-cover" style="background-image: url({{ getOneCategory(59,'cover_path') }});" href="{{ getOneCategory(59,'link') }}"></a>--}}
|
||||||
</div>
|
{{-- </div>--}}
|
||||||
</div>
|
{{-- </div>--}}
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
Reference in New Issue
Block a user