소스 검색

首页添加用户和机构排名信息

sunjh 6 년 전
부모
커밋
e2c38f4a48
2개의 변경된 파일6개의 추가작업 그리고 3개의 파일을 삭제
  1. 4 1
      src/components/InstitutionRank.vue
  2. 2 2
      src/components/PersonRank.vue

+ 4 - 1
src/components/InstitutionRank.vue

@@ -8,7 +8,10 @@
         </template>
       </el-table-column>
       <el-table-column prop="name">
-        <template slot-scope="scope"><span class="institution-name">{{scope.row.name}}</span></template>
+        <template slot-scope="scope"><span class="institution-name" style="font-size: 12px">{{scope.row.name}}</span></template>
+      </el-table-column>
+      <el-table-column prop="name">
+        <template slot-scope="scope"><span class="institution-name" style="font-size: 12px">总任务金额:{{scope.row.allTaskPrice}}</span></template>
       </el-table-column>
     </el-table>
   </div>

+ 2 - 2
src/components/PersonRank.vue

@@ -8,10 +8,10 @@
         </template>
       </el-table-column>
       <el-table-column prop="name">
-        <template slot-scope="scope"><span class="institution-style">{{scope.row.name}}</span></template>
+        <template slot-scope="scope"><span class="institution-style" style="font-size: 12px">{{scope.row.name}}</span></template>
       </el-table-column>
       <el-table-column prop="number">
-        <template slot-scope="scope"><span class="institution-style">{{scope.row.number}}</span></template>
+        <template slot-scope="scope"><span class="institution-style" style="font-size: 12px">总项目金额:{{scope.row.allProjectPrice}}</span></template>
       </el-table-column>
     </el-table>
   </div>