瀏覽代碼

背调主页

linwu 2 年之前
父節點
當前提交
4187ae7798

+ 27 - 0
app/Http/Controllers/Web/BackgroundCheck/IndexController.php

@@ -0,0 +1,27 @@
+<?php
+namespace App\Http\Controllers\Web\BackgroundCheck;
+
+use App\Http\Controllers\Web\WebBaseController;
+use Illuminate\Http\Request;
+use App\Services\Recruit\RecruitService;
+
+class IndexController extends WebBaseController
+{
+
+
+    public function __construct(RecruitService $recruitService)
+    {
+    }
+
+    /**
+     * 招考列表页
+     * @param Request $request
+     * @return array|\Illuminate\Contracts\View\Factory|\Illuminate\View\View|mixed|\think\response\View
+     */
+    public function index(Request $request)
+    {
+        return view('app.backgroundcheck.index');
+    }
+
+
+}

二進制
public/themes/default/assets/app/images/backgroundcheck/1.jpg


二進制
public/themes/default/assets/app/images/backgroundcheck/2.jpg


二進制
public/themes/default/assets/app/images/backgroundcheck/3.jpg


二進制
public/themes/default/assets/app/images/backgroundcheck/4.jpg


二進制
public/themes/default/assets/app/images/backgroundcheck/5.jpg


二進制
public/themes/default/assets/app/images/backgroundcheck/6.jpg


二進制
public/themes/default/assets/app/images/backgroundcheck/7.jpg


+ 37 - 0
public/themes/default/views/app/backgroundcheck/index.blade.php

@@ -0,0 +1,37 @@
+@extends('module.layouts.content')
+
+@push('meta')
+
+@endpush
+
+@push('css')
+<link href="{{ theme_asset('app/css/common.css') }}" rel="stylesheet">
+<style>
+    .img_box {width:1200px;margin:0 auto;}
+    .img_box img {width:100%;display:block;}
+</style>
+@endpush
+
+@push('js')
+
+@endpush
+
+@section('content')
+    <div class="img_box">
+        <img src="{{ theme_asset('app/images/backgroundcheck/1.jpg') }}" alt="">
+        <img src="{{ theme_asset('app/images/backgroundcheck/2.jpg') }}" alt="">
+        <img src="{{ theme_asset('app/images/backgroundcheck/3.jpg') }}" alt="">
+        <img src="{{ theme_asset('app/images/backgroundcheck/4.jpg') }}" alt="">
+        <img src="{{ theme_asset('app/images/backgroundcheck/5.jpg') }}" alt="">
+        <img src="{{ theme_asset('app/images/backgroundcheck/6.jpg') }}" alt="">
+        <img src="{{ theme_asset('app/images/backgroundcheck/7.jpg') }}" alt="">
+    </div>
+@endsection
+
+@section('script')
+    <script>
+        $(function(){
+
+        });
+    </script>
+@endsection

+ 7 - 0
routes/web.php

@@ -916,3 +916,10 @@ Route::group([
     $router->any('/enterprise','Web\Talent\ShuoboController@enterprise')->name('shuobo.enterprise');
     $router->any('/getShuoboJob','Web\Talent\ShuoboController@getShuoboJob')->name('shuobo.getShuoboJob');
 });
+
+//背调
+Route::group([
+    'prefix' =>  '/background_check',
+], function (Router $router){
+    $router->get('/', 'Web\backgroundCheck\IndexController@index')->name('backgroundCheck.index');
+});