Procházet zdrojové kódy

fix:修改重点项目投资百分比显示数值

yangjunhao před 1 rokem
rodič
revize
a485fac3f5
1 změnil soubory, kde provedl 2 přidání a 3 odebrání
  1. 2 3
      src/views/ARTICLE/index.vue

+ 2 - 3
src/views/ARTICLE/index.vue

@@ -113,17 +113,16 @@
         label="实际完成投资额(万)"
         align="center"
         prop="reality"
-        width="130px"
       >
         <template slot-scope="scope">
           {{ scope.row.reality }}
         </template>
       </el-table-column>
-      <el-table-column label="年度投资完成百分比" align="center" prop="retio">
+      <el-table-column label="投资完成百分比" align="center" prop="retio">
         <template slot-scope="scope">
           {{
             scope.row.retio
-              ? scope.row.retio.toFixed(2) * 100 + "%"
+              ? (scope.row.retio * 100).toFixed(2) + "%"
               : scope.row.retio
           }}
         </template>