隐藏字段
This commit is contained in:
parent
fa67295241
commit
d2b8915ebe
|
|
@ -161,7 +161,7 @@
|
|||
<el-table-column label="单位" align="center" prop="unit" width="80" />
|
||||
<el-table-column label="单价(元)" align="center" prop="unitPrice" width="100" />
|
||||
<el-table-column label="数量" align="center" prop="quantity" width="80" />
|
||||
<el-table-column label="归还数量" align="center" prop="returnQuantity" width="100" />
|
||||
<!-- <el-table-column label="归还数量" align="center" prop="returnQuantity" width="100" /> -->
|
||||
<el-table-column label="租赁日期" align="center" prop="leaseDate" width="120" />
|
||||
<el-table-column label="退还日期" align="center" prop="returnDate" width="120" />
|
||||
<el-table-column label="天数" align="center" prop="days" width="80" />
|
||||
|
|
@ -262,11 +262,11 @@
|
|||
<span v-else>-</span>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column label="归还数量" align="center" width="100">
|
||||
<!-- <el-table-column label="归还数量" align="center" width="100">
|
||||
<template slot-scope="scope">
|
||||
{{ scope.row.costType === 'lease' ? (scope.row.returnQuantity || 0) : '-' }}
|
||||
</template>
|
||||
</el-table-column>
|
||||
</el-table-column> -->
|
||||
<el-table-column label="租赁日期" align="center" width="120">
|
||||
<template slot-scope="scope">
|
||||
{{ scope.row.costType === 'lease' ? (scope.row.leaseDate || '-') : '-' }}
|
||||
|
|
@ -762,7 +762,7 @@ export default {
|
|||
{ key: 'unit', title: '单位' },
|
||||
{ key: 'unitPrice', title: '单价(元)' },
|
||||
{ key: 'quantity', title: '数量' },
|
||||
{ key: 'returnQuantity', title: '归还数量' },
|
||||
// { key: 'returnQuantity', title: '归还数量' },
|
||||
{ key: 'leaseDate', title: '租赁日期' },
|
||||
{ key: 'returnDate', title: '退还日期' },
|
||||
{ key: 'days', title: '天数' },
|
||||
|
|
@ -811,7 +811,7 @@ export default {
|
|||
{ key: 'unit', title: '单位' },
|
||||
{ key: 'unitPrice', title: '单价(元)' },
|
||||
{ key: 'quantity', title: '数量' },
|
||||
{ key: 'returnQuantity', title: '归还数量' },
|
||||
// { key: 'returnQuantity', title: '归还数量' },
|
||||
{ key: 'leaseDate', title: '租赁日期' },
|
||||
{ key: 'returnDate', title: '退还日期' },
|
||||
{ key: 'days', title: '天数' },
|
||||
|
|
|
|||
Loading…
Reference in New Issue