Commit b0b4384e authored by yanzhengyang's avatar yanzhengyang

日常报销、差旅报销页面微调

parent bf0b0d7f
......@@ -152,7 +152,7 @@
<span>费用明细</span>
<div class="card-context">
<el-table v-loading="loading" :data="item.tableItemList" @cell-mouse-enter="handleHover" @cell-mouse-leave="handleLeave" border>
<el-table-column type="selection" width="55" align="center" />
<!-- <el-table-column type="selection" width="55" align="center" />-->
<el-table-column label="提交时间" align="center" prop="registrationTime">
<template #default="scope">
<span>{{ scope.row.registrationTime }}</span>
......@@ -214,11 +214,6 @@
<div class="card-footer">
<div class="footer-step">
<flow-chart :dataList="list" :activeIndex="stepActive" :itemWidth="'110px'" />
<!-- <el-steps :active="1" finish-status="success" simple>-->
<!-- <el-step title="Step 1" />-->
<!-- <el-step title="Step 2" />-->
<!-- <el-step title="Step 3" />-->
<!-- </el-steps>-->
</div>
<div class="footer-right">
<span>已通过金额:{{getPassNumber(item.tableItemList)|| 0}}</span>
......
......@@ -144,7 +144,7 @@
</el-button>
</el-tooltip>
<el-tooltip content="打印报销单" placement="top">
<el-button link type="text" @click="handleDelete(scope.row)" >
<el-button link type="text" @click="handlePrint(scope.row)" >
<img src="@/assets/icons/common/print.png" height="32" width="32"/>
</el-button>
</el-tooltip>
......@@ -273,6 +273,11 @@ function handleDelete(row) {
}).catch(() => {});
}
/** 报销单打印页*/
function handlePrint(row) {
router.push({path:'/costManage/dailyReimburse/print', query: { id: row.id }});
}
/** 导出按钮操作 */
// function handleExport() {
// proxy.download("system/role/export", {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment