|
@@ -232,7 +232,7 @@
|
|
|
</el-table-column>
|
|
|
<el-table-column prop="workingTime" label="单件工时(分)" width="140">
|
|
|
<template slot-scope="scope">
|
|
|
- <el-input v-model.number="scope.row.workingTime" clearable maxlength="11" placeholder="请输入"></el-input>
|
|
|
+ <el-input type="number" v-model="scope.row.workingTime" clearable maxlength="11" placeholder="请输入"></el-input>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
<el-table-column prop="unitPrice" label="单件工价(元)" width="140">
|
|
@@ -262,8 +262,8 @@
|
|
|
<i class="el-icon-plus" @click="addProcedure()"></i>
|
|
|
<span>合计</span>
|
|
|
</div>
|
|
|
- <div class="workshopTotalText">{{ pieceHourTotal }}</div>
|
|
|
- <div>{{ priceSingleTotal }}</div>
|
|
|
+ <div class="workshopTotalText">{{ pieceHourTotal.toFixed(2) }}</div>
|
|
|
+ <div>{{ priceSingleTotal.toFixed(2) }}</div>
|
|
|
</div>
|
|
|
|
|
|
</div>
|