Browse Source

Merge branch 'feature-2.0' into 'master'

Feature 2.0

See merge request crowd-2019/crowd-test-service-front!153
郭超 4 years ago
parent
commit
5e83b6c750
1 changed files with 4 additions and 3 deletions
  1. 4 3
      src/pages/Technology/CrowdTool.vue

+ 4 - 3
src/pages/Technology/CrowdTool.vue

@@ -3,15 +3,16 @@
     <div class="card-wrapper" v-if="toolList&&toolList.length">
       <el-card v-for="item in toolList" :key="item.id" style="margin-bottom: 15px">
         <el-row>
-          <el-col :span="6">
+          <el-col :span="4">
             <img :src="item.photoUrl" alt="tool-img" class="pull-left technology-img">
           </el-col>
-          <el-col :span="15" class="technology-detail">
+          <el-col :span="16" class="technology-detail">
             <div class="technology-title">
               {{item.name}}
             </div>
+            <div>简介:{{item.description}}</div>
+
             <div class="technology-info">
-              <div>简介:{{item.description}}</div>
               <div>开发:{{item.owner}}</div>
             </div>
           </el-col>