bug修复
This commit is contained in:
parent
69a5603954
commit
4c97737dc6
|
|
@ -14,6 +14,8 @@
|
|||
>减免明细导出</el-button>
|
||||
<el-button type="warning" size="mini" @click="handleExportAll"
|
||||
>全部明细导出</el-button>
|
||||
<el-button type="warning" size="mini" @click="handleExportEach"
|
||||
>各结算明细导出</el-button>
|
||||
<el-button type="success" size="mini" @click="handleAdd"
|
||||
>提交</el-button>
|
||||
</el-col>
|
||||
|
|
|
|||
|
|
@ -160,10 +160,18 @@
|
|||
<div>{{ scope.row.maTypeName }}-{{ scope.row.typeName }}</div>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column label="配件名称 * 数量 / 单价" align="center" prop="specificationType" >
|
||||
<template slot-scope="scope">
|
||||
<div>{{ scope.row.partName + " " }}*{{ " "+scope.row.partNum + " " }}/{{" ¥"+" "}}{{ scope.row.partPrice }}</div>
|
||||
<el-table-column align="center" prop="specificationType" >
|
||||
<template #header>
|
||||
<span>配件名称 * 数量 / 单价</span>
|
||||
<span style="margin-left: 20px;">总价</span>
|
||||
</template>
|
||||
<template slot-scope="scope">
|
||||
<div class="part-info">
|
||||
{{ scope.row.partName + " " }}*{{ " "+scope.row.partNum + (scope.row.partPrice!== 0? " / ¥ " + scope.row.partPrice : " / 无") }}
|
||||
<span class="total-price">{{ "¥"+" "+scope.row.partCost }}</span>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
</el-table-column>
|
||||
</el-table>
|
||||
<div class="tabelAll">
|
||||
|
|
@ -640,4 +648,7 @@ export default {
|
|||
.tabelAll .column:last-child {
|
||||
border-right: none;
|
||||
}
|
||||
.part-info .total-price {
|
||||
margin-left: 20px; /* 调整间距大小 */
|
||||
}
|
||||
</style>
|
||||
|
|
|
|||
Loading…
Reference in New Issue