This commit is contained in:
parent
57f0e63f47
commit
dcec1f26e0
|
|
@ -97,9 +97,9 @@
|
||||||
{{ scope.row.num.toFixed(2) }}
|
{{ scope.row.num.toFixed(2) }}
|
||||||
</template>
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column label="租赁日期" align="center" prop="startTime" :show-overflow-tooltip="true"/>
|
<el-table-column label="租赁开始日期" align="center" prop="startTime" :show-overflow-tooltip="true"/>
|
||||||
<!-- <el-table-column label="归还数量" align="center" prop="" :show-overflow-tooltip="true" /> -->
|
<!-- <el-table-column label="归还数量" align="center" prop="" :show-overflow-tooltip="true" /> -->
|
||||||
<el-table-column label="归还日期 " align="center" prop="endTime" :show-overflow-tooltip="true"/>
|
<el-table-column label="租赁结束日期 " align="center" prop="endTime" :show-overflow-tooltip="true"/>
|
||||||
<el-table-column label="租赁天数" align="center" prop="leaseDays" :show-overflow-tooltip="true">
|
<el-table-column label="租赁天数" align="center" prop="leaseDays" :show-overflow-tooltip="true">
|
||||||
<template slot-scope="scope" v-if="scope.row.num">
|
<template slot-scope="scope" v-if="scope.row.num">
|
||||||
{{ Number(scope.row.leaseDays).toFixed(2) }}
|
{{ Number(scope.row.leaseDays).toFixed(2) }}
|
||||||
|
|
|
||||||
|
|
@ -70,8 +70,8 @@
|
||||||
<th>计量单位</th>
|
<th>计量单位</th>
|
||||||
<th>租赁单价</th>
|
<th>租赁单价</th>
|
||||||
<th>租赁数量</th>
|
<th>租赁数量</th>
|
||||||
<th>租赁日期</th>
|
<th>租赁开始日期</th>
|
||||||
<th>归还日期</th>
|
<th>租赁结束日期</th>
|
||||||
<th>租赁天数</th>
|
<th>租赁天数</th>
|
||||||
<th>租赁费用(元)</th>
|
<th>租赁费用(元)</th>
|
||||||
<th>备注</th>
|
<th>备注</th>
|
||||||
|
|
@ -695,14 +695,14 @@ export default {
|
||||||
settlementType: this.rowData[0].settlementType || ''
|
settlementType: this.rowData[0].settlementType || ''
|
||||||
}
|
}
|
||||||
console.log('2222222222222', params)
|
console.log('2222222222222', params)
|
||||||
|
|
||||||
submitCosts(params).then(response => {
|
submitCosts(params).then(response => {
|
||||||
loading.close()
|
loading.close()
|
||||||
this.$message({
|
this.$message({
|
||||||
type: 'success',
|
type: 'success',
|
||||||
message: '提交成功'
|
message: '提交成功'
|
||||||
})
|
})
|
||||||
|
|
||||||
this.$emit('isReset')
|
this.$emit('isReset')
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
|
|
|
||||||
|
|
@ -152,8 +152,8 @@
|
||||||
<th>计量单位</th>
|
<th>计量单位</th>
|
||||||
<th>租赁单价</th>
|
<th>租赁单价</th>
|
||||||
<th>租赁数量</th>
|
<th>租赁数量</th>
|
||||||
<th>租赁日期</th>
|
<th>租赁开始日期</th>
|
||||||
<th>归还日期</th>
|
<th>租赁结束日期</th>
|
||||||
<th>租赁天数</th>
|
<th>租赁天数</th>
|
||||||
<th>租赁费用(元)</th>
|
<th>租赁费用(元)</th>
|
||||||
</tr>
|
</tr>
|
||||||
|
|
@ -533,7 +533,7 @@
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div> -->
|
</div> -->
|
||||||
|
|
||||||
<div style="margin-bottom: 20px">
|
<div style="margin-bottom: 20px">
|
||||||
<table
|
<table
|
||||||
border="1"
|
border="1"
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue