|
@@ -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>
|