xiejiacheng 5 vuotta sitten
vanhempi
commit
db6bcd065e

+ 0 - 34
src/layout/index/calendar.vue

@@ -1,34 +0,0 @@
-<template>
-  <div id="calendar">
-    <el-row>
-      <el-col :span="24">
-        <el-calendar v-model="calendar">
-        </el-calendar>
-      </el-col>
-    </el-row>
-  </div>
-</template>
-
-<script>
-export default {
-  name: 'calendar',
-  props: {
-    calendar:null,
-  },
-  components: {},
-  data: () => ({}),
-  created() {},
-  computed: {},
-  methods: {},
-};
-</script>
-
-<style lang="less" scoped>
-/deep/.el-calendar__body{
-  padding:0;
-}
-/deep/.el-calendar-table .el-calendar-day{
-  height:39px;
-}
-</style>
-

+ 0 - 95
src/layout/index/cause.vue

@@ -1,95 +0,0 @@
-<template>
-  <div id="cause">
-    <el-row>
-      <el-col :span="24">
-        <el-tabs type="border-card">
-          <el-tab-pane v-for="(item, index) in enterList" :key="index">
-            <span slot="label">{{item.title}}</span>
-            <el-col :span="24" v-for="(tag, index) in item.enterInfoList" :key="index" class="enterList">
-              <el-col :span="20" class="title textOver">
-                <el-link :underline="false">{{tag.title}}</el-link>
-              </el-col>
-              <el-col :span="4" class="time">
-                {{tag.time}}
-              </el-col>
-            </el-col>
-          </el-tab-pane>
-        </el-tabs>
-        <el-link :inderline="false" class="moreLink" :style="`color:${Color}`">MORE<i class="el-icon-video-play"></i>
-        </el-link>
-      </el-col>
-    </el-row>
-  </div>
-</template>
-
-<script>
-export default {
-  name: 'cause',
-  props: {
-    enterList: null,
-    enterInfoList: null,
-  },
-  components: {},
-  data: () => ({
-    activeName: 'first',
-    Color: '#850000'
-  }),
-  created() { },
-  computed: {},
-  methods: {
-    handleClick(tab, event) {
-      // eslint-disable-next-line no-console
-      console.log(tab, event);
-    }
-  },
-};
-</script>
-
-<style lang="less" scoped>
-.moreLink {
-  position: absolute;
-  top: 10px;
-  right: 10px;
-  color: #850000;
-}
-/deep/.el-tabs__header {
-  margin: 0;
-}
-/deep/.el-tabs--border-card > .el-tabs__content {
-  padding: 0;
-}
-.talksList {
-  padding: 12px 10px;
-  border-bottom: 1px dashed #ccc;
-}
-.talksList .title .el-link {
-  font-size: 18px;
-}
-.textOver {
-  overflow: hidden;
-  text-overflow: ellipsis;
-  white-space: nowrap;
-}
-.enterList {
-  padding: 10px;
-  border-bottom: 1px dashed #ccc;
-}
-.enterList .title .el-link {
-  font-size: 18px;
-}
-.enterList .time {
-  font-size: 18px;
-  text-align: right;
-}
-.teacherList {
-  padding: 10px;
-  border-bottom: 1px dashed #ccc;
-}
-.teacherList .title .el-link {
-  font-size: 18px;
-}
-.teacherList .time {
-  font-size: 18px;
-  text-align: right;
-}
-</style>

+ 73 - 0
src/layout/index/chengguo.vue

@@ -0,0 +1,73 @@
+<template>
+  <div id="chengguo">
+    <el-row>
+      <el-col :span="24" class="news">
+        <el-col :span="24" class="topTit">
+          <el-col :span="18">
+            <span :style="`border-color:${borderColor}`">{{title}}</span>
+          </el-col>
+          <el-col :span="6" style="text-align:right;">
+            <el-link :underline="false" :style="`color:${Color}`">MORE<i class="el-icon-video-play"></i></el-link>
+          </el-col>
+        </el-col>
+        <el-col :span="24" class="newsMain">
+          <el-col :span="24" class="newsLi">
+            <el-col class="chengguolist" :span="24" v-for="(tag, index) in chengguolist" :key="index" :type="tag.type"
+                  @click="$router.push({ path: '/detail', params:{id:tag.id} })">
+              <el-col :span="20">
+                {{tag.title}}
+              </el-col>
+              <el-col :span="4" style="text-align:right;">
+                {{tag.time}}
+              </el-col>
+            </el-col>
+          </el-col>
+        </el-col>
+      </el-col>
+    </el-row>
+  </div>
+</template>
+
+<script>
+export default {
+  name: 'chengguo',
+  props: {
+    chengguolist: null,
+  },
+  components: {},
+  data: () => ({
+    borderColor: '#850000',
+    Color: '#850000',
+    title:'成果展示'
+  }),
+  created() {
+  },
+  computed: {},
+  methods: {},
+};
+</script>
+
+<style lang="less" scoped>
+.chengguolist{
+  padding: 10px 0;
+  border-bottom: 1px dashed #ccc;
+  margin: 1px;
+}
+.news {
+  padding: 10px;
+}
+.topTit {
+  border-bottom: 1px solid #ccc;
+}
+.topTit span {
+  display: inline-block;
+  height: 30px;
+  border-bottom: 1px solid transparent;
+}
+.newsMain {
+  padding: 5px 0;
+}
+.block {
+  height: 250px;
+}
+</style>

+ 0 - 42
src/layout/index/contact.vue

@@ -1,42 +0,0 @@
-<template>
-  <div id="contact">
-    <el-row>
-      <el-col :span="24">
-        <h4 :style="`color:${Color}`">联系我们</h4>
-        <p class="ii-text">联系地址:长春市朝阳区延安大街2055号</p>
-        <p class="ii-text">邮政编码:130012</p>
-        <p class="ii-text">服务热线:0431-85716395;0431-85717117;</p>
-        <p class="ii-text">传真号码:0431-85717100</p>
-        <p class="ii-text">邮箱地址:ccutjob@163.com</p>
-      </el-col>
-    </el-row>
-  </div>
-</template>
-
-<script>
-export default {
-  name: 'contact',
-  props: {},
-  components: {},
-  data: () => ({
-    Color: '#850000',
-  }),
-  created() { },
-  computed: {},
-  methods: {},
-};
-</script>
-
-<style lang="less" scoped>
-h4 {
-  margin: 0;
-  padding: 0;
-}
-p {
-  margin: 0;
-  padding: 0;
-}
-.ii-text {
-  padding: 5px 0;
-}
-</style>

+ 0 - 156
src/layout/index/danwei.vue

@@ -1,156 +0,0 @@
-<template>
-  <div id="danwei">
-    <el-row>
-      <el-col :span="24">
-         <!-- <el-tabs v-model="activeName" @tab-click="handleClick">
-          <el-tab-pane label="事业单位" name="first">
-            <el-col :span="24" v-for="(item, index) in shiyeList" :key="index" class="shiyeList">
-              <el-col :span="20" class="title textOver">
-                <el-link :underline="false">{{item.title}}</el-link>
-              </el-col>
-              <el-col :span="4" class="time">
-                {{item.time}}
-              </el-col>
-            </el-col>
-          </el-tab-pane>
-          <el-tab-pane label="公务员" name="second">
-            <el-col :span="24" v-for="(item, index) in gongwuyuanList" :key="index" class="shiyeList">
-              <el-col :span="20" class="title textOver">
-                <el-link :underline="false">{{item.title}}</el-link>
-              </el-col>
-              <el-col :span="4" class="time">
-                {{item.time}}
-              </el-col>
-            </el-col>
-          </el-tab-pane>
-          <el-tab-pane label="选调生" name="third">
-            <el-col :span="24" v-for="(item, index) in xuantiaoList" :key="index" class="shiyeList">
-              <el-col :span="20" class="title textOver">
-                <el-link :underline="false">{{item.title}}</el-link>
-              </el-col>
-              <el-col :span="4" class="time">
-                {{item.time}}
-              </el-col>
-            </el-col>
-          </el-tab-pane>
-          <el-tab-pane label="西部计划" name="fourth">
-            <el-col :span="24" v-for="(item, index) in xibuList" :key="index" class="shiyeList">
-              <el-col :span="20" class="title textOver">
-                <el-link :underline="false">{{item.title}}</el-link>
-              </el-col>
-              <el-col :span="4" class="time">
-                {{item.time}}
-              </el-col>
-            </el-col>
-          </el-tab-pane>
-          <el-tab-pane label="特岗教师" name="fifth">
-            <el-col :span="24" v-for="(item, index) in teguangList" :key="index" class="shiyeList">
-              <el-col :span="20" class="title textOver">
-                <el-link :underline="false">{{item.title}}</el-link>
-              </el-col>
-              <el-col :span="4" class="time">
-                {{item.time}}
-              </el-col>
-            </el-col>
-          </el-tab-pane>
-          <el-tab-pane label="三支一扶" name="sith">
-            <el-col :span="24" v-for="(item, index) in sanzhiList" :key="index" class="shiyeList">
-              <el-col :span="20" class="title textOver">
-                <el-link :underline="false">{{item.title}}</el-link>
-              </el-col>
-              <el-col :span="4" class="time">
-                {{item.time}}
-              </el-col>
-            </el-col>
-          </el-tab-pane>
-          <el-tab-pane label="大学生村官" name="seventh">
-            <el-col :span="24" v-for="(item, index) in xueshengList" :key="index" class="shiyeList">
-              <el-col :span="20" class="title textOver">
-                <el-link :underline="false">{{item.title}}</el-link>
-              </el-col>
-              <el-col :span="4" class="time">
-                {{item.time}}
-              </el-col>
-            </el-col>
-          </el-tab-pane>
-        </el-tabs> -->
-        <el-tabs type="border-card">
-          <el-tab-pane v-for="(item, index) in danweiList" :key="index">
-            <span slot="label">{{item.title}}</span>
-            <el-col :span="24" v-for="(tag, index) in item.danweiInfoList" :key="index" class="shiyeList">
-              <el-col :span="20" class="title textOver">
-                <el-link :underline="false">{{tag.title}}</el-link>
-              </el-col>
-              <el-col :span="4" class="time">
-                {{tag.time}}
-              </el-col>
-            </el-col>
-          </el-tab-pane>
-        </el-tabs>
-        <el-link :inderline="false" class="moreLink" :style="`color:${Color}`">MORE<i class="el-icon-video-play"></i>
-        </el-link>
-      </el-col>
-    </el-row>
-  </div>
-</template>
-
-<script>
-export default {
-  name: 'danwei',
-  props: {
-    danweiList:null,
-    danweiInfoList:null,
-  },
-  components: {},
-  data: () => ({
-    activeName: 'first',
-    Color: '#850000'
-  }),
-  created() {},
-  computed: {},
-  methods: {
-    handleClick(tab, event) {
-      // eslint-disable-next-line no-console
-      console.log(tab, event);
-    }
-  },
-};
-</script>
-
-<style lang="less" scoped>
-.moreLink {
-  position: absolute;
-  top: 10px;
-  right: 10px;
-  color: #850000;
-}
-/deep/.el-tabs__header {
-  margin: 0;
-}
-/deep/.el-tabs--border-card > .el-tabs__content {
-  padding: 0;
-}
-.talksList {
-  padding: 12px 10px;
-  border-bottom: 1px dashed #ccc;
-}
-.talksList .title .el-link {
-  font-size: 18px;
-}
-.textOver {
-  overflow: hidden;
-  text-overflow: ellipsis;
-  white-space: nowrap;
-}
-.shiyeList {
-  padding: 10px;
-  border-bottom: 1px dashed #ccc;
-}
-.shiyeList .title .el-link {
-  font-size: 18px;
-}
-.shiyeList .time {
-  font-size: 18px;
-  text-align: right;
-}
-</style>

+ 0 - 69
src/layout/index/fast.vue

@@ -1,69 +0,0 @@
-<template>
-  <div id="fast">
-    <el-row>
-      <el-col :span="24">
-        <el-col :span="24" class="fastTop" :style="`background:${backColor}`">
-          <i class="el-icon-user-solid"></i>快速通道
-        </el-col>
-        <el-col :span="24" class="fastLink">
-          <el-col :span="11" class="link">
-            <el-link :underline="false" href="http://ccut.51langtu.com/improperBrowser.htm">职业测评</el-link>
-          </el-col>
-          <el-col :span="11" class="link">
-            <el-link :underline="false" href="http://xlzx.zt.ccut.edu.cn/">就业心理咨询</el-link>
-          </el-col>
-          <el-col :span="11" class="link">
-            <el-link :underline="false" href="http://www.jilinjobs.cn/">就业信息网</el-link>
-          </el-col>
-          <el-col :span="11" class="link">
-            <el-link :underline="false" href="http://wzb.dept.ccut.edu.cn/">应征入伍</el-link>
-          </el-col>
-        </el-col>
-      </el-col>
-    </el-row>
-  </div>
-</template>
-
-<script>
-export default {
-  name: 'fast',
-  props: {},
-  components: {},
-  data: () => ({
-    backColor: '#850000',
-  }),
-  created() { },
-  computed: {},
-  methods: {},
-};
-</script>
-
-<style lang="less" scoped>
-.fastTop {
-  height: 50px;
-  line-height: 50px;
-  text-align: center;
-  color: #fff;
-  font-size: 23px;
-}
-.fastLink {
-  margin: 20px 0;
-}
-.fastLink .link {
-  height: 50px;
-  line-height: 45px;
-  text-align: center;
-  border: 1px dashed #ccc;
-  border-radius: 7px;
-  margin: 15px 7px;
-}
-.fastLink .link:hover{
-  border: 1px dashed #850000;
-}
-.fastLink .link:hover .el-link {
-  color: #850000;
-}
-.fastLink .link .el-link {
-  font-size: 16px;
-}
-</style>

+ 0 - 80
src/layout/index/friendLink.vue

@@ -1,80 +0,0 @@
-<template>
-  <div id="friendLink">
-    <el-row>
-      <el-col :span="24">
-        <el-col :span="24" class="title">
-          <span>友情链接</span>
-        </el-col>
-        <el-col :span="24" class="image">
-          <!-- <el-col :span="3" v-for="(item, index) in linkImgList" :key="index">
-            <el-link :underlne="false">
-              <el-image :src="item.url"></el-image>
-            </el-link>
-          </el-col> -->
-          <ul class="link-list">
-            <li class="link-item" v-for="(item, index) in linkImgList" :key="index">
-              <a :href="item.link" class="link" title="新职业网" target="_blank" rel="nofollow">
-                <img :src="item.url" alt="">
-              </a>
-            </li>
-          </ul>
-        </el-col>
-      </el-col>
-    </el-row>
-  </div>
-</template>
-
-<script>
-export default {
-  name: 'friendLink',
-  props: {
-    linkImgList: null,
-  },
-  components: {},
-  data: () => ({}),
-  created() { },
-  computed: {},
-  methods: {},
-};
-</script>
-
-<style lang="less" scoped>
-.title {
-  height: 49px;
-  background-color: #F5F7FA;
-  border-bottom: 1px solid #850000;
-}
-.title span {
-  display: inline-block;
-  height: 47px;
-  background: #fff;
-  padding: 0 10px;
-  text-align: center;
-  line-height: 49px;
-  color: #850000;
-  border: 1px solid #ccc;
-}
-.link-list{
-  margin:0;
-  padding:0;
-}
-.link-list .link-item {
-  float: left;
-  border: 1px solid #eee;
-  display: table;
-  width: 178px !important;
-  margin: 0 9px 10px 0;
-  padding: 5px;
-}
-.link-list .link {
-  display: table-cell;
-  height: 30px !important;
-  vertical-align: middle;
-  text-align: center;
-}
-.link-list .link img {
-  max-width: 100%;
-  max-height: 100%;
-  vertical-align: middle;
-}
-</style>

+ 0 - 84
src/layout/index/login.vue

@@ -1,84 +0,0 @@
-<template>
-  <div id="login">
-    <el-row>
-      <el-col :span="24" class="login">
-        <el-col :span="6" class="common red">
-          <el-link :underline="false">
-            <span class="mainTwoIcon"><i class="el-icon-user"></i></span>
-            <span class="mainTwoTit">生源信息</span>
-          </el-link>
-        </el-col>
-        <el-col :span="6" class="common green">
-          <el-link :underline="false">
-            <span class="mainTwoIcon"><i class="el-icon-office-building"></i></span>
-            <span class="mainTwoTit">单位登录/注册</span>
-          </el-link>
-        </el-col>
-        <el-col :span="6" class="common blue">
-          <el-link :underline="false">
-            <span class="mainTwoIcon"><i class="el-icon-user"></i></span>
-            <span class="mainTwoTit">学生登录</span>
-          </el-link>
-        </el-col>
-        <el-col :span="6" class="common orange">
-          <el-link :underline="false">
-            <span class="mainTwoIcon"><i class="el-icon-user"></i></span>
-            <span class="mainTwoTit">管理员登录</span>
-          </el-link>
-        </el-col>
-      </el-col>
-    </el-row>
-  </div>
-</template>
-
-<script>
-export default {
-  name: 'login',
-  props: {},
-  components: {},
-  data: () => ({}),
-  created() {},
-  computed: {},
-  methods: {},
-};
-</script>
-
-<style lang="less" scoped>
-.login{
-  padding:10px;
-}
-.login .common{
-  padding: 10px;
-  text-align:center;
-  border-radius: 17px;
-  margin: 0 10px 0 0;
-  width: 284px;
-}
-.mainTwoIcon{
-  display: inline-block;
-  width: 35px;
-  height: 35px;
-  border-radius: 90px;
-  background: #fff;
-  text-align: center;
-  line-height: 35px;
-  color: #333;
-}
-.mainTwoTit {
-  color: #fff;
-  font-weight: 700;
-  padding: 0 0 0 10px;
-}
-.red {
-  background-color: #d0122c;
-}
-.green {
-  background-color: #75d53a;
-}
-.blue {
-  background-color: #47c0ff;
-}
-.orange {
-  background-color: #ff9147;
-}
-</style>

+ 0 - 47
src/layout/index/lunbo.vue

@@ -1,47 +0,0 @@
-<template>
-  <div id="lunbo">
-    <el-row>
-      <el-col :span="24" class="lunbo">
-        <el-col :span="24" class="lunboTop">
-          <span>合作单位</span>
-        </el-col>
-        <el-col :span="24">
-          <el-carousel height="270px" direction="vertical" :autoplay="true">
-            <el-carousel-item v-for="(item, index) in lunboList" :key="index">
-              <img :src="item.url" class="imgList" />
-            </el-carousel-item>
-          </el-carousel>
-        </el-col>
-      </el-col>
-    </el-row>
-  </div>
-</template>
-
-<script>
-export default {
-  name: 'lunbo',
-  props: {
-    lunboList:null,
-  },
-  components: {},
-  data: () => ({}),
-  created() { },
-  computed: {},
-  methods: {},
-};
-</script>
-
-<style lang="less" scoped>
-.lunboTop {
-  height: 30px;
-  border-bottom: 1px solid #ccc;
-  margin: 0 0 10px 0;
-}
-.lunboTop span {
-  display: inline-block;
-  height: 29px;
-  line-height: 29px;
-  border-bottom: 1px solid #850000;
-  padding: 0 5px;
-}
-</style>

+ 2 - 1
src/layout/index/news.vue

@@ -36,12 +36,13 @@ export default {
   name: 'news',
   props: {
     // newsList:null,
-    title: null,
+    // title: null,
   },
   components: {},
   data: () => ({
     borderColor:'#850000',
     Color:'#850000',
+    title:"最近新闻",
     newsList:[],
   }),
   created() {

+ 0 - 167
src/layout/index/recruit.vue

@@ -1,167 +0,0 @@
-<template>
-  <div id="recruit">
-    <el-row>
-      <el-col :span="24">
-        <el-tabs v-model="activeName" @tab-click="handleClick">
-          <el-tab-pane label="校内宣讲" name="first">
-            <el-col :span="24">
-              <el-col :span="12" v-for="(item, index) in talksList" :key="index" class="talksList">
-                <el-col :span="18">
-                  <el-col :span="24" class="title textOver">
-                    <el-link :underline="false">{{item.title}}</el-link>
-                  </el-col>
-                  <el-col :span="24" class="schname textOver">
-                    {{item.schname}}
-                  </el-col>
-                  <el-col :span="24" class="address textOver">
-                    {{item.address}}
-                  </el-col>
-                </el-col>
-                <el-col :span="6">
-                  <el-col :span="24" class="time">{{item.time}}</el-col>
-                  <el-col :span="24" class="timedian">{{item.timedian}}</el-col>
-                  <el-col :span="24" class="size"><i class="el-icon-view"></i>{{item.team_size}}</el-col>
-                </el-col>
-              </el-col>
-            </el-col>
-          </el-tab-pane>
-          <el-tab-pane label="双选会" name="second">
-            <el-col :span="24" v-for="(item, index) in fairsList" :key="index" class="fairsList">
-              <el-col :span="19">
-                <el-col :span="24" class="title textOver">
-                  <el-link :underline="false">{{item.title}}</el-link>
-                </el-col>
-                <el-col :span="24" class="schname textOver">主办方:{{item.schname}}</el-col>
-                <el-col :span="24" class="address textOver">{{item.address}}</el-col>
-              </el-col>
-              <el-col :span="5" class="time">{{item.time}}&nbsp;{{item.timedian}}</el-col>
-            </el-col>
-          </el-tab-pane>
-          <el-tab-pane label="校外宣讲" name="third">
-            <el-col :span="24">
-              <el-col :span="12" v-for="(item, index) in talksoutList" :key="index" class="talksList">
-                <el-col :span="18">
-                  <el-col :span="24" class="title textOver">
-                    <el-link :underline="false">{{item.title}}</el-link>
-                  </el-col>
-                  <el-col :span="24" class="schname textOver">
-                    {{item.schname}}
-                  </el-col>
-                  <el-col :span="24" class="address textOver">
-                    {{item.address}}
-                  </el-col>
-                </el-col>
-                <el-col :span="6">
-                  <el-col :span="24" class="time">{{item.time}}</el-col>
-                  <el-col :span="24" class="timedian">{{item.timedian}}</el-col>
-                  <el-col :span="24" class="size"><i class="el-icon-view"></i>{{item.team_size}}</el-col>
-                </el-col>
-              </el-col>
-            </el-col>
-          </el-tab-pane>
-          <el-tab-pane label="招聘快讯" name="fourth">
-            <el-col :span="24" v-for="(item, index) in infoList" :key="index" class="fairsList">
-              <el-col :span="24" class="title textOver">
-                <el-link :underline="false">{{item.title}}</el-link>
-              </el-col>
-              <el-col :span="24" class="schname textOver">主办方:{{item.schname}}</el-col>
-              <el-col :span="24" class="address textOver">{{item.corpname}}</el-col>
-            </el-col>
-          </el-tab-pane>
-        </el-tabs>
-        <el-link :inderline="false" class="moreLink" :style="`color:${Color}`">MORE<i class="el-icon-video-play"></i>
-        </el-link>
-      </el-col>
-    </el-row>
-  </div>
-</template>
-
-<script>
-export default {
-  name: 'recruit',
-  props: {
-    talksList: null,
-    fairsList: null,
-    talksoutList: null,
-    infoList:null,
-  },
-  components: {},
-  data: () => ({
-    activeName: 'first',
-    Color: '#850000'
-  }),
-  created() { },
-  computed: {},
-  methods: {
-    handleClick(tab, event) {
-      // eslint-disable-next-line no-console
-      console.log(tab, event);
-    }
-  },
-};
-</script>
-
-<style lang="less" scoped>
-.moreLink {
-  position: absolute;
-  top: 10px;
-  right: 10px;
-  color: #850000;
-}
-/deep/.el-tabs__nav {
-  left: 20px;
-}
-/deep/.el-tabs__header {
-  margin: 0;
-}
-.talksList {
-  padding: 12px 10px;
-  border-bottom: 1px dashed #ccc;
-}
-.talksList .title .el-link {
-  font-size: 18px;
-}
-.talksList .schname {
-  font-size: 16px;
-  color: #999;
-  padding: 4px 0;
-}
-.talksList .address {
-  font-size: 16px;
-  color: #999;
-}
-.talksList .time {
-  font-size: 16px;
-  color: red;
-}
-.talksList .timedian {
-  font-size: 16px;
-  color: red;
-  padding: 4px 0;
-}
-.textOver {
-  overflow: hidden;
-  text-overflow: ellipsis;
-  white-space: nowrap;
-}
-.fairsList {
-  padding: 10px;
-  border-bottom: 1px dashed #ccc;
-}
-.fairsList .title .el-link {
-  font-size: 18px;
-}
-.fairsList .schname {
-  font-size: 16px;
-  color: #999;
-  padding: 6px 0;
-}
-.fairsList .address {
-  font-size: 16px;
-  color: #999;
-}
-.fairsList .time {
-  font-size: 16px;
-  color: red;
-}
-</style>

+ 0 - 76
src/layout/index/yizhanshi.vue

@@ -1,76 +0,0 @@
-<template>
-  <div id="yizhanshi">
-    <el-row>
-      <el-col :span="24">
-        <el-col class="ThrMainLogin" :span="24">
-          <el-link :underline="false">
-            <el-image style="width: 253px; height: 35px" :src="image.yizhan"></el-image>
-          </el-link>
-          <el-link :underline="false" href="http://jilinbys.ncss.org.cn/login">
-            <el-image style="width: 98px; height: 37px" :src="image.xuesheng"></el-image>
-          </el-link>
-          <el-link :underline="false" href="http://jilinbys.ncss.org.cn/rec/login">
-            <el-image style="width: 98px; height: 37px" :src="image.danwei"></el-image>
-          </el-link>
-          <el-link :underline="false" href="http://file.ncss.org.cn/ncsFile/ncss/guidebook/student_guide.pdf">
-            <el-image style="width: 141px; height: 24px" :src="image.shouce"></el-image>
-          </el-link>
-          <el-link :underline="false" href="http://file.ncss.org.cn/ncsFile/ncss/guidebook/rec_guide.pdf">
-            <el-image style="width: 141px; height: 24px" :src="image.shouces"></el-image>
-          </el-link>
-        </el-col>
-        <el-col :span="24" class="yizhan">
-          <el-col :span="12" class="yizhanTit" v-for="(item, index) in yizhanList" :key="index" :type="item.type">
-            <el-link :underline="false" href="" class="item-link has-dot" target="_blank">
-              <p style="font-size:13px;">{{ item.title }}({{ item.time }})</p>
-            </el-link>
-          </el-col>
-        </el-col>
-      </el-col>
-    </el-row>
-  </div>
-</template>
-
-<script>
-export default {
-  name: 'yizhanshi',
-  props: {
-    image: null,
-    yizhanList: null,
-  },
-  components: {},
-  data: () => ({}),
-  created() { },
-  computed: {},
-  methods: {},
-};
-</script>
-
-<style lang="less" scoped>
-p{
-  margin:0;
-  padding:0;
-}
-.ThrMainLogin {
-  float: left;
-  width: 100%;
-  height: auto;
-  background: #4193c5;
-}
-.ThrMainLogin .el-link {
-  margin: 0 9px;
-  padding: 8px 0;
-}
-.ThrMainLogin img {
-  max-width: 100%;
-  max-height: 100%;
-  vertical-align: middle;
-}
-.yizhanTit {
-  padding: 11px 10px;
-  border-bottom: 1px dashed #ccc;
-  overflow: hidden;
-  text-overflow: ellipsis;
-  white-space: nowrap;
-}
-</style>

+ 5 - 5
src/views/index/index.vue

@@ -27,7 +27,7 @@
             <news title="计算明示"></news>
           </el-col>
           <el-col :span="17" class="chengguo">
-            成果展示
+            <chengguo :chengguolist="chengguolist"></chengguo>
           </el-col>
         </div>
       </el-col>
@@ -44,18 +44,18 @@
 import top from '../../layout/index/top.vue';
 import native from '../../layout/index/native.vue';
 import news from '../../layout/index/news.vue';
-import foot from '../../layout/index/foot.vue';
-
+import chengguo from '../../layout/index/chengguo.vue';
 export default {
   name: 'index',
   props: {
-    logolist: null,
+    newslist:null,
+    chengguolist:null,
   },
   components: {
     top,
     native,
     news,
-    foot,
+    chengguo,
   },
   data: () => ({}),
   created() { },