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
da9ea58b
Commit
da9ea58b
authored
Mar 27, 2025
by
yanzhengyang
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
日常报销bug修复
parent
e49571a8
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
6 deletions
+5
-6
index.vue
src/views/costManage/dailyReimburse/index.vue
+4
-4
index.vue
src/views/costManage/tripReimburse/index.vue
+1
-2
No files found.
src/views/costManage/dailyReimburse/index.vue
View file @
da9ea58b
...
...
@@ -222,7 +222,7 @@
</div>
<div
class=
"footer-right"
>
<span>
已通过金额:
{{
getPassNumber
(
item
.
tableItemList
)
||
0
}}
</span>
<span>
未通过金额:
{{
getNotPassNumber
(
item
.
tableItemList
)
||
0
}}
</span>
<span>
未通过金额:
{{
getNotPassNumber
(
item
.
tableItemList
)
||
0
}}
</span>
<span>
累计金额:
{{
getAllPassNumber
(
item
.
tableItemList
)
||
0
}}
</span>
</div>
</div>
...
...
@@ -234,8 +234,8 @@
<
script
setup
name=
"DailyReimbursement"
>
import
FlowChart
from
'@/components/FlowChart/index.vue'
import
{
listCostManage
,
projectList
,
deleteDailyReimburse
,
getAllapproveList
}
from
"
../../..
/api/costManage/cost.js"
;
import
{
listUser
}
from
"
../../..
/api/system/user.js"
;
import
{
listCostManage
,
projectList
,
deleteDailyReimburse
,
getAllapproveList
}
from
"
@
/api/costManage/cost.js"
;
import
{
listUser
}
from
"
@
/api/system/user.js"
;
import
{
useRouter
}
from
"vue-router"
;
import
{
ArrowDown
}
from
"@element-plus/icons-vue"
;
...
...
@@ -363,7 +363,7 @@ const getNotPassNumber = (item)=>{
let
allNumber
=
0
for
(
let
item2
of
item
){
if
(
item2
.
status
===
1
){
if
(
item2
.
status
===
1
||
item2
.
status
===
2
){
allNumber
+=
item2
.
totalMoney
}
}
...
...
src/views/costManage/tripReimburse/index.vue
View file @
da9ea58b
...
...
@@ -259,8 +259,7 @@ function handleDelete(row) {
}).
then
(()
=>
{
getList
();
proxy
.
$modal
.
msgSuccess
(
"删除成功"
);
}).
catch
(()
=>
{
});
}).
catch
(()
=>
{});
}
/** 导出按钮操作 */
...
...
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