wesley 6 年之前
父节点
当前提交
04e2e7b442

+ 36 - 0
database/migrations/2018_12_27_105738_create_company_domains_table.php

xqd
@@ -0,0 +1,36 @@
+<?php
+
+use Illuminate\Support\Facades\Schema;
+use Illuminate\Database\Schema\Blueprint;
+use Illuminate\Database\Migrations\Migration;
+
+class CreateCompanyDomainsTable extends Migration
+{
+    /**
+     * Run the migrations.
+     *
+     * @return void
+     */
+    public function up()
+    {
+        Schema::create('company_domains', function (Blueprint $table) {
+            $table->increments('id');
+            $table->integer('company_id')->comment('企业ID');
+            $table->string('site_domain',255)->nullable()->comment('域名');
+            $table->string('site_home',255)->nullable()->comment('网址');
+            $table->string('site_name',255)->nullable()->comment('名称');
+
+            $table->timestamps();
+        });
+    }
+
+    /**
+     * Reverse the migrations.
+     *
+     * @return void
+     */
+    public function down()
+    {
+        Schema::dropIfExists('company_domains');
+    }
+}

+ 38 - 0
database/migrations/2018_12_27_160257_create_company_sems_table.php

xqd
@@ -0,0 +1,38 @@
+<?php
+
+use Illuminate\Support\Facades\Schema;
+use Illuminate\Database\Schema\Blueprint;
+use Illuminate\Database\Migrations\Migration;
+
+class CreateCompanySemsTable extends Migration
+{
+    /**
+     * Run the migrations.
+     *
+     * @return void
+     */
+    public function up()
+    {
+        Schema::create('company_sems', function (Blueprint $table) {
+            $table->increments('id');
+            $table->integer('company_id')->comment('企业ID');
+            $table->string('sem_date',255)->comment('推广时间');
+            $table->string('sem_title',255)->comment('推广标题');
+            $table->text('sem_url')->nullable()->comment('推广网站');
+            $table->string('keywords',255)->nullable()->comment('关键字');
+            $table->string('source_name',255)->nullable()->comment('推广平台');
+
+            $table->timestamps();
+        });
+    }
+
+    /**
+     * Reverse the migrations.
+     *
+     * @return void
+     */
+    public function down()
+    {
+        Schema::dropIfExists('company_sems');
+    }
+}

+ 38 - 0
database/migrations/2018_12_27_160315_create_company_jobs_table.php

xqd
@@ -0,0 +1,38 @@
+<?php
+
+use Illuminate\Support\Facades\Schema;
+use Illuminate\Database\Schema\Blueprint;
+use Illuminate\Database\Migrations\Migration;
+
+class CreateCompanyJobsTable extends Migration
+{
+    /**
+     * Run the migrations.
+     *
+     * @return void
+     */
+    public function up()
+    {
+        Schema::create('company_jobs', function (Blueprint $table) {
+            $table->increments('id');
+            $table->integer('company_id')->comment('企业ID');
+            $table->string('job_name',255)->comment('职位');
+            $table->string('location',255)->nullable()->comment('工作地点');
+            $table->string('salary',255)->comment('工资');
+            $table->text('job_url')->nullable()->comment('招聘链接');
+            $table->string('release_date',255)->nullable()->comment('发布日期');
+            $table->string('source_name',255)->nullable()->comment('发布平台');
+            $table->timestamps();
+        });
+    }
+
+    /**
+     * Reverse the migrations.
+     *
+     * @return void
+     */
+    public function down()
+    {
+        Schema::dropIfExists('company_jobs');
+    }
+}

+ 1 - 3
public/base/css/style.css

xqd xqd
@@ -1,5 +1,3 @@
-@import url("https://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700");
-@import url("https://fonts.googleapis.com/css?family=Roboto:400,300,500,700");
 
 /*
  *
@@ -7013,7 +7011,7 @@ body.mini-navbar.fixed-sidebar .logo-element {
 }
 
 .middle-box h1 {
-    font-size: 170px;
+    font-size: 80px;
 }
 
 .wrapper .middle-box {