ggooalice пре 2 година
родитељ
комит
ee317c9367
1 измењених фајлова са 1 додато и 1 уклоњено
  1. 1 1
      fhKeeper/formulahousekeeper/timesheet/src/views/workReport/daily.vue

+ 1 - 1
fhKeeper/formulahousekeeper/timesheet/src/views/workReport/daily.vue

@@ -664,7 +664,7 @@
                     <el-table-column fixed="right" prop="he" label="合计(h)" width="120">
                         <template slot-scope="scope">
                             <div class="zhiss">
-                                <p>{{scope.row.filledTime ? scope.row.he*1 + scope.row.filledTime*1 : scope.row.he}}</p>
+                                <p>{{scope.row.filledTime ? parseFloat(scope.row.he) + scope.row.filledTime*1 : parseFloat(scope.row.he)}}</p>
                                 <el-button size="mini" icon="el-icon-delete" circle @click="zhoBtn(scope.$index)"></el-button>
                             </div>
                         </template>