|
@@ -1,11 +1,6 @@
|
|
|
<template>
|
|
|
<div id="index">
|
|
|
- <el-row style="padding-top:0.5rem;">
|
|
|
- <el-col :span="24" class="search">
|
|
|
- <el-col :span="20" class="searchInput"> <el-input placeholder="请输入招聘会名称" prefix-icon="el-icon-search" v-model="input"> </el-input></el-col>
|
|
|
- <el-col :span="4" class="searchBtn"><el-button>搜索</el-button></el-col>
|
|
|
- </el-col>
|
|
|
- </el-row>
|
|
|
+ <el-row class="topTitle">校园招聘会</el-row>
|
|
|
<scroll :hasMore="hasMore" @loadMore="search" v-if="list.length > 0">
|
|
|
<el-row v-for="(item, index) in list" :key="index" type="flex" align="middle" justify="center" class="row">
|
|
|
<el-col :span="18">
|
|
@@ -39,6 +34,11 @@ import deleteDig from '@m/components/delete-dig.vue';
|
|
|
import _ from 'lodash';
|
|
|
import { mapActions, mapState, mapMutations } from 'vuex';
|
|
|
export default {
|
|
|
+ metaInfo() {
|
|
|
+ return {
|
|
|
+ title: '校园招聘会',
|
|
|
+ };
|
|
|
+ },
|
|
|
name: 'index',
|
|
|
props: {},
|
|
|
components: {
|
|
@@ -123,18 +123,12 @@ p {
|
|
|
white-space: nowrap;
|
|
|
text-overflow: ellipsis;
|
|
|
}
|
|
|
-.search {
|
|
|
- border-bottom: 0.0625rem solid #ccc;
|
|
|
-}
|
|
|
-.searchInput {
|
|
|
- padding: 0.3125rem 0.625rem;
|
|
|
-}
|
|
|
-.searchBtn {
|
|
|
- padding: 0.3125rem 0;
|
|
|
-}
|
|
|
-/deep/.searchBtn .el-button {
|
|
|
- border: none;
|
|
|
- padding: 12px 14px;
|
|
|
+.topTitle {
|
|
|
+ height: 45px;
|
|
|
+ line-height: 45px;
|
|
|
+ text-align: center;
|
|
|
+ font-size: 25px;
|
|
|
+ background: beige;
|
|
|
}
|
|
|
.addBtn {
|
|
|
position: fixed;
|