耗材列表新增修改

This commit is contained in:
duan
2024-07-04 11:34:39 +08:00
parent 6dd4146cc6
commit 847a682a78
3 changed files with 26 additions and 19 deletions

View File

@@ -24,8 +24,9 @@
<el-table-column label="备注" prop="remark"></el-table-column>
<el-table-column label="剩余付款金额" prop="waitAmount">
<template v-slot="scope">
<span class="num" v-if="scope.row.waitAmount > 0">{{ scope.row.waitAmount }}</span>
<span v-else>-</span>
<span class="num">
{{ scope.row.waitAmount }}
</span>
</template>
</el-table-column>
<el-table-column label="待付款笔数" prop="waitCount">
@@ -84,7 +85,7 @@ export default {
dayjs,
query: {
name: '',
type:""
type: ""
},
tableData: {
page: 0,
@@ -135,7 +136,7 @@ export default {
// 重置查询
resetHandle() {
this.query.name = ''
this.query.type=''
this.query.type = ''
this.tableData.page = 0;
this.getTableData()
},