gks 1 year ago
parent
commit
bcff4b7eb6
1 changed files with 8 additions and 4 deletions
  1. 8 4
      src/views/ARTICLE/index.vue

+ 8 - 4
src/views/ARTICLE/index.vue

@@ -120,12 +120,15 @@
           <el-tag v-else-if="scope.row.scale == 3" type="success">大型</el-tag>-->
         </template> 
       </el-table-column>
-      <el-table-column label="年度投资计划(万)" show-overflow-tooltip align="center" prop="plan">
+        
+      <el-table-column label="年度投资计划(万)" width="180"   show-overflow-tooltip align="center" prop="plan">
         <template slot-scope="scope">
           {{ scope.row.plan }}
         </template>
       </el-table-column>
       <el-table-column
+      width="180" 
+
         label="总投资金额(万)"
         align="center"
         prop="totalPlan"
@@ -137,6 +140,7 @@
       </el-table-column>
       <el-table-column
         label="实际完成投资额(万)"
+        width="180" 
         align="center"
         prop="reality"
         show-overflow-tooltip
@@ -145,7 +149,7 @@
           {{ scope.row.reality }}
         </template>
       </el-table-column>
-      <el-table-column label="投资完成百分比" show-overflow-tooltip align="center" prop="retio">
+      <el-table-column label="投资完成百分比" width="180"  show-overflow-tooltip align="center" prop="retio">
         <template slot-scope="scope">
           {{
             scope.row.retio
@@ -154,12 +158,12 @@
           }}
         </template>
       </el-table-column>
-      <el-table-column label="形象进度" width="240"  show-overflow-tooltip align="center" prop="schedule">
+      <el-table-column label="形象进度" width="200"  show-overflow-tooltip align="center" prop="schedule">
         <template slot-scope="scope">
           {{ scope.row.schedule }}
         </template>
       </el-table-column>
-      <el-table-column label="项目审核状态" align="center" prop="status">
+      <el-table-column label="项目审核状态" width="180"  show-overflow-tooltip  align="center" prop="status">
         <template slot-scope="scope">
           <el-tag v-if="scope.row.status == 0">草稿</el-tag>
           <el-tag v-else-if="scope.row.status == 1" type="info">审核中</el-tag>