瀏覽代碼

调整工时成本预警表的宽度

Lijy 1 年之前
父節點
當前提交
35df6b3106
共有 1 個文件被更改,包括 7 次插入7 次删除
  1. 7 7
      fhKeeper/formulahousekeeper/timesheet/src/views/corpreport/list.vue

+ 7 - 7
fhKeeper/formulahousekeeper/timesheet/src/views/corpreport/list.vue

@@ -634,39 +634,39 @@
             <!-- 当前总预算,已发生工时成本,xxx成本预算,xxx已发生成本,xxx已发生占比, yyy成本预算,yyy已发生成本,yyy已发生占比。 -->
                 <el-table-column  prop="projectCode" :label="$t('Itemno')"  width="120" fixed></el-table-column>
                 <el-table-column  prop="projectName" :label="$t('headerTop.projectName')" min-width="200" fixed></el-table-column>
-                <el-table-column prop="baseCurcost" :label="$t('currenttotalbudget')" min-width="160" align="right">
+                <el-table-column prop="baseCurcost" :label="$t('currenttotalbudget')" width="150" align="right">
                   <template slot-scope="scope">
                     <span>¥{{scope.row.baseCurcost | numberToCurrency}}</span>
                   </template>
                 </el-table-column>
-                <el-table-column  prop="currentRemainingBudget" :label="$t('currentsurplusbudget')" min-width="200"  align="right">
+                <el-table-column  prop="currentRemainingBudget" :label="$t('currentsurplusbudget')" width="150"  align="right">
                   <template slot-scope="scope">
                     <span>¥{{scope.row.currentRemainingBudget | numberToCurrency}}</span>
                   </template>
                 </el-table-column>
-                <el-table-column  prop="remainingBudget" :label="$t('totalsurplusbudget')" min-width="200"  align="right">
+                <el-table-column  prop="remainingBudget" :label="$t('totalsurplusbudget')" width="150"  align="right">
                   <template slot-scope="scope">
                     <span>¥{{scope.row.remainingBudget | numberToCurrency}}</span>
                   </template>
                 </el-table-column>
-                <el-table-column prop="feeMan" :label="$t('workinghourshasbeenreported')" min-width="160" align="right">
+                <el-table-column prop="feeMan" :label="$t('workinghourshasbeenreported')" width="150" align="right">
                   <template slot-scope="scope">
                     <span :class="scope.row.baseCurcost * 0.9 < scope.row.feeMan ? 'warntext' : ''">¥{{scope.row.feeMan | numberToCurrency}}</span>
                   </template>
                 </el-table-column>
                 <template v-for="item in baseCostColumns">
-                  <el-table-column :label="item.name + $t('costbudget')" min-width="200" align="right">
+                  <el-table-column :label="item.name + $t('costbudget')" width="150" align="right">
                     <template slot-scope="scope">
                       <span>¥{{budgetFilter(scope.row.curcostList,item.id) | numberToCurrency}}</span>
                     </template>
                   </el-table-column>
-                  <el-table-column :label="item.name + $t('coshasbeenreported')" min-width="200" align="right">
+                  <el-table-column :label="item.name + $t('coshasbeenreported')" width="150" align="right">
                     <template slot-scope="scope">
                       <span :class="percentageFilter(scope.row,item.id) > 90 ? 'warntext' : ''"
                       >¥{{AlreadyFilter(scope.row.realcostList,item.id) | numberToCurrency}}</span>
                     </template>
                   </el-table-column>
-                  <el-table-column :label="item.name + $t('proportionreported')" min-width="200" align="right">
+                  <el-table-column :label="item.name + $t('proportionreported')" width="150" align="right">
                     <template slot-scope="scope">
                       <span :class="percentageFilter(scope.row,item.id) > 90 ? 'warntext' : ''"
                       >{{percentageFilter(scope.row,item.id) == 'NaN' ? '-' : percentageFilter(scope.row,item.id) + '%'}}</span>