优化问题
This commit is contained in:
@@ -90,7 +90,7 @@
|
|||||||
{{ scope.row.type == 'purveyor' ? '进货单' : '退货单' }}
|
{{ scope.row.type == 'purveyor' ? '进货单' : '退货单' }}
|
||||||
</template>
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column label="总金额" prop="totalAmount">
|
<el-table-column label="应付金额" prop="totalAmount">
|
||||||
<template v-slot="scope">
|
<template v-slot="scope">
|
||||||
¥{{ scope.row.totalAmount }}
|
¥{{ scope.row.totalAmount }}
|
||||||
</template>
|
</template>
|
||||||
@@ -104,8 +104,7 @@
|
|||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column label="待付款金额" prop="waitAmount">
|
<el-table-column label="待付款金额" prop="waitAmount">
|
||||||
<template v-slot="scope">
|
<template v-slot="scope">
|
||||||
<span class="num" v-if="scope.row.waitAmount > 0">¥{{ scope.row.waitAmount }}</span>
|
<span class="num" >¥{{ scope.row.waitAmount }}</span>
|
||||||
<span v-else>-</span>
|
|
||||||
</template>
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column label="状态" prop="status">
|
<el-table-column label="状态" prop="status">
|
||||||
|
|||||||
Reference in New Issue
Block a user