|
@@ -7,9 +7,10 @@
|
|
|
</el-form>
|
|
|
</el-col>
|
|
|
<el-col :span="24">
|
|
|
- <el-col :span="12"><h3>人员报销详情</h3>
|
|
|
+ <el-col :span="18"><h3>人员报销详情</h3>
|
|
|
<div style="margin-bottom: 5px;">
|
|
|
- <span class="color: red">可报销额度:{{columnForm.reimbursementQuota}}</span>
|
|
|
+ <span class="color: red">日报销额度:{{columnForm.reimbursementQuotaDay}}</span>
|
|
|
+ <span class="color: red">; 可报销额度:{{columnForm.reimbursementQuota}}</span>
|
|
|
<span class="color: red">; 已报销额度:{{columnForm.alreadyReimbursementAmount}}</span>
|
|
|
<span class="color: red">; 剩余报销额度:{{columnForm.surplusReimbursementAmount}}</span>
|
|
|
</div>
|
|
@@ -19,7 +20,7 @@
|
|
|
<span class="color: red">; 剩余报销天数:{{columnForm.surplusReimbursementDay}}</span>
|
|
|
</div>
|
|
|
</el-col>
|
|
|
- <el-col :span="12" style="text-align:right">
|
|
|
+ <el-col :span="6" style="text-align:right">
|
|
|
<el-button type="info" size="small" @click="goBack">返回</el-button>
|
|
|
</el-col>
|
|
|
<el-table
|
|
@@ -77,6 +78,7 @@
|
|
|
sqlCmd: ''
|
|
|
},
|
|
|
columnForm: {
|
|
|
+ reimbursementQuotaDay: '', // 日报销额度
|
|
|
reimbursementDay: '', // 报销天数
|
|
|
alreadyReimbursementDay: '', // 已报销天数
|
|
|
surplusReimbursementDay: '', // 剩余报销天数
|
|
@@ -104,6 +106,7 @@
|
|
|
this.columnForm.reimbursementQuota = data.reimbursementQuota
|
|
|
this.columnForm.alreadyReimbursementAmount = data.alreadyReimbursementAmount
|
|
|
this.columnForm.surplusReimbursementAmount = data.surplusReimbursementAmount
|
|
|
+ this.columnForm.reimbursementQuotaDay = data.reimbursementQuotaDay
|
|
|
})
|
|
|
}
|
|
|
},
|