|
@@ -0,0 +1,229 @@
|
|
|
+<template>
|
|
|
+ <div class="home-wrapper">
|
|
|
+ <div class="nav" stype="height:500px">
|
|
|
+ <!--搜索框-->
|
|
|
+ <el-row class="search-nav" style="padding: 30px 0 20px 0">
|
|
|
+ <el-col :span="6">
|
|
|
+ <div class="pull-left">
|
|
|
+ <img class="logo-img" src="../../assets/img/logo-blue.png" :to="'/home'"/>
|
|
|
+ <span class="logo-title">群智众测平台</span>
|
|
|
+ </div>
|
|
|
+ </el-col>
|
|
|
+ <el-col :span="12">
|
|
|
+ <div class="search-nav">
|
|
|
+ <div id="search-block ">
|
|
|
+ <el-tabs v-model="searchType" type="card" @tab-click="handleTypeClick">
|
|
|
+ <el-tab-pane v-for="item in searchTypeArr" v-if="item.value!=='all'" :label="item.name" :name="item.value" :key="item.value"></el-tab-pane>
|
|
|
+ </el-tabs>
|
|
|
+ <div class="search-input">
|
|
|
+ <el-input placeholder="请输入内容" v-model="searchVal" class="input-with-select">
|
|
|
+ <el-button class="search-button" slot="append" type="primary" @click="handleSearchData">搜索</el-button>
|
|
|
+ </el-input>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </el-col>
|
|
|
+ <el-col :span="6">
|
|
|
+ <el-button type="primary pull-right" class="releaseBtn">免费发布众测需求</el-button>
|
|
|
+ </el-col>
|
|
|
+ </el-row>
|
|
|
+ <!--TabNav-->
|
|
|
+ <el-tabs v-model="currTab" @tab-click="handleTabClick" class="square-tab">
|
|
|
+ <el-tab-pane v-for="item in homeTabArr.menuArr1" :label="item.label" :name="item.name" :key="item.name"></el-tab-pane>
|
|
|
+ <el-tab-pane v-for="item in homeTabArr.menuArr2" :label="item.label" :name="item.name" :key="item.name"></el-tab-pane>
|
|
|
+ <el-tab-pane v-for="item in homeTabArr.menuArr3" :label="item.label" :name="item.name" :key="item.name"></el-tab-pane>
|
|
|
+ </el-tabs>
|
|
|
+ <div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+
|
|
|
+ <div class="home-page container">
|
|
|
+ <el-row>
|
|
|
+ <el-col :span="19" class="test-type-wrapper">
|
|
|
+ <TestMenu :testTypeList="homeData.testTypeList"></TestMenu>
|
|
|
+ <TestCard :homeData="homeData"></TestCard>
|
|
|
+ </el-col>
|
|
|
+ <el-col :span="5" class="homepage-right-modules">
|
|
|
+ <LoginCard/>
|
|
|
+ <HotCrowd :applicationTypeRank="homeData.applicationTypeRank"/>
|
|
|
+ <HotAgency :agencyRank="homeData.agencyRank"/>
|
|
|
+ <HotUser :userRank="homeData.userRank"/>
|
|
|
+ <HotContest :competitionList="homeData.competitionList"/>
|
|
|
+ </el-col>
|
|
|
+ </el-row>
|
|
|
+ <el-row :gutter="15">
|
|
|
+ <el-col :span="12">
|
|
|
+ <ResourceAndTool :resourceList="homeData.resourceList"></ResourceAndTool>
|
|
|
+ </el-col>
|
|
|
+ <el-col :span="12">
|
|
|
+ <BrandCard :residentAgencyList = homeData.residentAgencyList></BrandCard>
|
|
|
+ </el-col>
|
|
|
+ </el-row>
|
|
|
+ <InstitutionCard></InstitutionCard>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+</template>
|
|
|
+
|
|
|
+<script>
|
|
|
+ // import commonData from '../../constants/tabMenu'
|
|
|
+ import SearchBar from '../../components/commons/SearchBar'
|
|
|
+ import TestMenu from './TestMenu'
|
|
|
+ import LoginCard from './LoginCard'
|
|
|
+ import BrandCard from './BrandCard'
|
|
|
+ import ResourceAndTool from './ResourceAndTool'
|
|
|
+ import TestCard from './TestCard'
|
|
|
+ import InstitutionCard from './InstitutionCard'
|
|
|
+ import HotCrowd from './HotCrowd'
|
|
|
+ import HotAgency from './HotAgency'
|
|
|
+ import HotUser from './HotUser'
|
|
|
+ import HotContest from './HotContest'
|
|
|
+ import PopularProject from '../Square/PopularProject'
|
|
|
+ import Http from '@/js/http.js'
|
|
|
+ import {mapActions,mapGetters} from 'vuex'
|
|
|
+ import Waterfall from 'vue-waterfall/lib/waterfall'
|
|
|
+ import WaterfallSlot from 'vue-waterfall/lib/waterfall-slot'
|
|
|
+ // console.log(commonData);
|
|
|
+ export default {
|
|
|
+ name: 'Homepage',
|
|
|
+ components: {
|
|
|
+ HotCrowd,
|
|
|
+ HotContest,
|
|
|
+ HotUser,
|
|
|
+ HotAgency,
|
|
|
+ InstitutionCard,
|
|
|
+ SearchBar,
|
|
|
+ TestMenu,
|
|
|
+ PopularProject,
|
|
|
+ LoginCard,
|
|
|
+ TestCard,
|
|
|
+ BrandCard,
|
|
|
+ ResourceAndTool,
|
|
|
+ Waterfall,
|
|
|
+ WaterfallSlot
|
|
|
+ // vueWaterfallEasy
|
|
|
+ },
|
|
|
+ data() {
|
|
|
+ return {
|
|
|
+ searchType:'0',
|
|
|
+ searchTypeArr:[
|
|
|
+ {
|
|
|
+ "name": "全部",
|
|
|
+ "value": "all"
|
|
|
+ },
|
|
|
+ {
|
|
|
+ "name": "项目",
|
|
|
+ "value": "0"
|
|
|
+ },
|
|
|
+ {
|
|
|
+ "name": "工具",
|
|
|
+ "value": "1"
|
|
|
+ },
|
|
|
+ {
|
|
|
+ "name": "机构",
|
|
|
+ "value": "2"
|
|
|
+ },
|
|
|
+ {
|
|
|
+ "name": "专家",
|
|
|
+ "value": "3"
|
|
|
+ }],
|
|
|
+ searchVal: '',
|
|
|
+ homeTabArr:{
|
|
|
+ menuArr1: [
|
|
|
+ {label: "首页", name: "homepage",linkTo:'/home'},
|
|
|
+ {label: "众测广场", name: "square",linkTo:'/square'},
|
|
|
+ {label: "众测技术", name: "technology",linkTo:'technology'}
|
|
|
+ ],
|
|
|
+ menuArr2:[
|
|
|
+ {label: "科技服务", name: "monograph"},
|
|
|
+ {label: "服务互联网", name: "Internet"},
|
|
|
+ {label: "集成电路", name: "integratedCircuit"},
|
|
|
+ {label: "智能传感器", name: "Sensor"},
|
|
|
+ {label: "高端装备", name: "Assembly"},
|
|
|
+ {label: "更多", name: "more"}
|
|
|
+ ],
|
|
|
+ menuArr3:[
|
|
|
+ {label: "找机构", name: "findInstitution"},
|
|
|
+ {label: "找专家", name: "finfExpert"},
|
|
|
+ {label: "更多", name: "findMore"},
|
|
|
+ ],
|
|
|
+ },
|
|
|
+ homeData:{},
|
|
|
+ currTab:'homepage'
|
|
|
+ }
|
|
|
+ },
|
|
|
+ methods:{
|
|
|
+ loadData(){
|
|
|
+ Http.get('/api/common/index/info').then((res)=>{
|
|
|
+ this.homeData = res.data;
|
|
|
+ this.homeData.applicationTypeList.map((item)=>{
|
|
|
+ item.height = (item.testTypeList.length / 2) * 24 + 100;
|
|
|
+ return item;
|
|
|
+ })
|
|
|
+ })
|
|
|
+ },
|
|
|
+ handleTabClick(tab){
|
|
|
+ this.currTab = tab.name;
|
|
|
+ this.$router.push(this.homeTabArr.menuArr1[Number(tab.index)].linkTo);
|
|
|
+ },
|
|
|
+ handleTypeClick(tab){
|
|
|
+ this.searchType = tab.name
|
|
|
+ },
|
|
|
+ handleSearchData(){
|
|
|
+ let url = '/api/common/index/page';
|
|
|
+ let params = {
|
|
|
+ "keyword": this.searchVal,
|
|
|
+ "activePage": 1,
|
|
|
+ "columnFilters": [
|
|
|
+ {
|
|
|
+ "field": "type",
|
|
|
+ "type": "enums",
|
|
|
+ "enums":this.searchTypeArr,
|
|
|
+ "value": this.searchType
|
|
|
+ }
|
|
|
+ ]
|
|
|
+ }
|
|
|
+ Http.post(url,params).then((res)=>{
|
|
|
+ console.log(res);
|
|
|
+ })
|
|
|
+
|
|
|
+ }
|
|
|
+ },
|
|
|
+
|
|
|
+ mounted() {
|
|
|
+ this.loadData();
|
|
|
+ }
|
|
|
+ }
|
|
|
+</script>
|
|
|
+
|
|
|
+<style lang="less">
|
|
|
+ @import "../../style/search-nav";
|
|
|
+
|
|
|
+ .home-wrapper {
|
|
|
+ /deep/ .square-tab .el-tabs__item {
|
|
|
+ font-size: 16px !important;
|
|
|
+ margin-right: 0px !important;
|
|
|
+ }
|
|
|
+ /deep/ .login-card .popular-list {
|
|
|
+ padding: 0 10px !important;
|
|
|
+ }
|
|
|
+ .home-page {
|
|
|
+ padding: 15px 0;
|
|
|
+ }
|
|
|
+ .test-type-wrapper {
|
|
|
+ padding-right: 15px;
|
|
|
+ margin-bottom: 15px;
|
|
|
+ }
|
|
|
+ .homepage-right-modules {
|
|
|
+ .login-card .el-card__body {
|
|
|
+ padding: 10px !important;
|
|
|
+ }
|
|
|
+ .popular-card .el-card__header {
|
|
|
+ padding: 10px !important;
|
|
|
+ }
|
|
|
+ .popular-card .el-card__body {
|
|
|
+ padding: 10px !important;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+</style>
|