|
@@ -43,24 +43,25 @@
|
|
|
</div>
|
|
</div>
|
|
|
|
|
|
|
|
<div class="home-page container">
|
|
<div class="home-page container">
|
|
|
- <el-row>
|
|
|
|
|
|
|
+ <el-row :gutter="15">
|
|
|
|
|
+ <el-col :span="5" class="homepage-right-modules">
|
|
|
|
|
+ <LoginCard v-if="HOME_DISPLAY.login_card"/>
|
|
|
|
|
+ <HotCrowd :applicationTypeRank="homeDataNoCache.applicationTypeRank" v-if="HOME_DISPLAY.hot_crowd"/>
|
|
|
|
|
+ <HotAgency :agencyRank="homeDataNoCache.agencyRank" v-if="HOME_DISPLAY.hot_agency"/>
|
|
|
|
|
+ <HotUser :userRank="homeDataNoCache.userRank" v-if="HOME_DISPLAY.hot_user"/>
|
|
|
|
|
+ <HotContest :competitionList="homeData.competitionList" v-if="HOME_DISPLAY.hot_contest"/>
|
|
|
|
|
+ </el-col>
|
|
|
|
|
+
|
|
|
<el-col :span="19" class="test-type-wrapper">
|
|
<el-col :span="19" class="test-type-wrapper">
|
|
|
<TestMenu :testTypeList="homeData.testTypeList" v-if="HOME_DISPLAY.test_menu"></TestMenu>
|
|
<TestMenu :testTypeList="homeData.testTypeList" v-if="HOME_DISPLAY.test_menu"></TestMenu>
|
|
|
<TestCard :applicationTypeList="homeData.applicationTypeList" v-if="HOME_DISPLAY.test_card"></TestCard>
|
|
<TestCard :applicationTypeList="homeData.applicationTypeList" v-if="HOME_DISPLAY.test_card"></TestCard>
|
|
|
<el-row style="margin-top: 10px" v-if="HOME_DISPLAY.resource_and_tool">
|
|
<el-row style="margin-top: 10px" v-if="HOME_DISPLAY.resource_and_tool">
|
|
|
- <ResourceAndTool :resourceList="homeDataNoCache.resourceList"></ResourceAndTool>
|
|
|
|
|
|
|
+ <ResourceAndTool :resourceList="homeData.toolList"></ResourceAndTool>
|
|
|
</el-row>
|
|
</el-row>
|
|
|
<el-row v-if="HOME_DISPLAY.brand_card">
|
|
<el-row v-if="HOME_DISPLAY.brand_card">
|
|
|
<BrandCard :residentAgencyList=homeData.residentAgencyList></BrandCard>
|
|
<BrandCard :residentAgencyList=homeData.residentAgencyList></BrandCard>
|
|
|
</el-row>
|
|
</el-row>
|
|
|
</el-col>
|
|
</el-col>
|
|
|
- <el-col :span="5" class="homepage-right-modules">
|
|
|
|
|
- <LoginCard v-if="HOME_DISPLAY.login_card"/>
|
|
|
|
|
- <HotCrowd :applicationTypeRank="homeDataNoCache.applicationTypeRank" v-if="HOME_DISPLAY.hot_crowd"/>
|
|
|
|
|
- <HotAgency :agencyRank="homeDataNoCache.agencyRank" v-if="HOME_DISPLAY.hot_agency"/>
|
|
|
|
|
- <HotUser :userRank="homeDataNoCache.userRank" v-if="HOME_DISPLAY.hot_user"/>
|
|
|
|
|
- <HotContest :competitionList="homeData.competitionList" v-if="HOME_DISPLAY.hot_contest"/>
|
|
|
|
|
- </el-col>
|
|
|
|
|
</el-row>
|
|
</el-row>
|
|
|
<InstitutionCard v-if="HOME_DISPLAY.institution_card"></InstitutionCard>
|
|
<InstitutionCard v-if="HOME_DISPLAY.institution_card"></InstitutionCard>
|
|
|
</div>
|
|
</div>
|