123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123 |
- <template>
- <div class="popular-card">
- <el-card>
- <div slot="header" class="popular-header">
- <img src="../../assets/img/popular-project.png" alt="popular-project" class="popular-header-img"/>
- <span class="popular-header-title">热门项目</span>
- <el-button style="float: right; padding: 3px 0;line-height: 25px" type="text" @click="goToMore()">more>></el-button>
- </div>
- <div class="popular-list">
- <el-row class="popular-list-item" v-for="item in hotCrowdTestProjectVOs" :key="item.id">
- <el-col :span="19">
- <img src="../../assets/img/logo-project.png" alt="logo-project" class="pull-left project-logo-img">
- <div style="margin-left: 55px; cursor: pointer;" @click="goToProjectDetail(item.code)">
- <div class="list-item-title">
- {{item.name}}
- </div>
- <div class="list-item-info">
- {{item.description}}
- </div>
- </div>
- </el-col>
- <el-col :span="5">
- <div class="project-people-number">
- <span v-if="item.joinCount > 10000">{{item.joinCount > 10000 ? Math.floor(item.joinCount/10000) + 'w+' : item.joinCount}}人</span>
- <span v-else>{{item.joinCount > 1000 ? Math.floor(item.joinCount/1000) + 'k+' : item.joinCount}}人</span>
- </div>
- </el-col>
- </el-row>
- </div>
- </el-card>
- </div>
- </template>
- <script>
- import Http from '@/js/http.js';
- import Apis from '@/js/api.js';
- import {notify} from "../../constants";
- export default {
- name: 'PopularProject',
- props:['hotCrowdTestProjectVOs'],
- methods:{
- goToMore(){
- console.log("goToMoreProject");
- this.$router.push({
- name: 'PopularProjectAndTaskList',
- params: {type: "project"}
- })
- },
- goToProjectDetail (id) {
- this.$router.push({name: 'Project', params: {projectId: id}})
- }
- }
- }
- </script>
- <style lang="less">
- .popular-card {
- margin-bottom: 15px;
- }
- .popular-header .el-card__header{
- border-bottom: 2px solid rgba(0,117,203,1) !important;
- }
- .popular-card .el-card__body{
- padding: 0 !important;
- }
- .popular-header {
- height: 25px;
- vertical-align:middle;
- }
- .popular-header-title {
- display: inline-block;
- line-height: 25px;
- vertical-align:middle;
- }
- .popular-header-img {
- height: 25px;
- width: 25px;
- vertical-align:middle;
- }
- .popular-list {
- .popular-list-item {
- padding: 5px 10px;
- border-bottom: 1px solid #ccc !important;
- .list-item-title{
- font-size:14px;
- font-family:Source Han Sans CN;
- font-weight:400;
- color:rgba(0,0,0,1);
- overflow: hidden;
- text-overflow:ellipsis; //溢出用省略号显示
- white-space:nowrap; //溢出不换行
- }
- .list-item-info{
- font-size:14px;
- font-family:Adobe Heiti Std;
- font-weight:normal;
- color:rgba(153,153,153,1);
- overflow:hidden; //超出的文本隐藏
- text-overflow:ellipsis; //溢出用省略号显示
- white-space:nowrap; //溢出不换行
- }
- .project-logo-img {
- width: 44px;
- height: 44px;
- display: inline-block;
- margin: 2px 0;
- }
- .project-people-number {
- font-size:16px;
- font-family:Roboto;
- font-weight:400;
- color:rgba(0,117,203,1);
- line-height: 48px;
- }
- }
- }
- </style>
|