Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
psa-web
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
高滢
psa-web
Commits
b0b4384e
Commit
b0b4384e
authored
Apr 14, 2025
by
yanzhengyang
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
日常报销、差旅报销页面微调
parent
bf0b0d7f
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
7 deletions
+7
-7
index.vue
src/views/costManage/dailyReimburse/index.vue
+1
-6
index.vue
src/views/costManage/tripReimburse/index.vue
+6
-1
No files found.
src/views/costManage/dailyReimburse/index.vue
View file @
b0b4384e
...
...
@@ -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>
...
...
src/views/costManage/tripReimburse/index.vue
View file @
b0b4384e
...
...
@@ -144,7 +144,7 @@
</el-button>
</el-tooltip>
<el-tooltip
content=
"打印报销单"
placement=
"top"
>
<el-button
link
type=
"text"
@
click=
"handle
Delete
(scope.row)"
>
<el-button
link
type=
"text"
@
click=
"handle
Print
(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", {
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment