Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
S
SuperMan
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
1
Issues
1
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
罗超
SuperMan
Commits
44f1dd19
Commit
44f1dd19
authored
Apr 01, 2024
by
liudong1993
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
1
parent
40b534ac
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
25 additions
and
2 deletions
+25
-2
OrderList.vue
src/components/myOrdersAllType/components/OrderList.vue
+25
-2
No files found.
src/components/myOrdersAllType/components/OrderList.vue
View file @
44f1dd19
...
...
@@ -133,6 +133,17 @@
||((userInfo.EmployeeId==1||userInfo.RB_Department_Id==2)&&item.ManagerExamineName))"
>
<div
style=
"padding:10px;"
>
<div>
<p
style=
"font-size: 13px;"
v-if=
"item.FinanceList && item.FinanceList.length>0"
>
<span>
制单金额:
</span>
<span
style=
"color: blue;"
v-for=
"fitem in item.FinanceList"
>
<template
v-if=
"fitem.Type==1"
>
<span
@
click=
"openDetails(fitem.FrId)"
>
{{
(
fitem
.
Type
==
1
?
'收入'
:
'退'
)
+
fitem
.
FrId
+
'单'
}}
</span>
=>
{{
(
fitem
.
Fee
!=
0
?
'('
:
''
)
+
fitem
.
OriginalMoney
+
fitem
.
CurrencyName
+
(
fitem
.
Fee
!=
0
?
'-'
+
fitem
.
Fee
+
'手续费) *'
:
' *'
)
+
fitem
.
Rate
+
'='
+
fitem
.
Money
}}
</
template
>
</span>
<span
style=
"color: red;"
v-for=
"fitem in item.FinanceList"
v-if=
"fitem.Type==2"
>
<span
@
click=
"openDetails(fitem.FrId)"
>
{{(fitem.Type==1?'收':'退') + fitem.FrId}}
</span>
=> {{fitem.OriginalMoney+fitem.CurrencyName+' *'+fitem.Rate+'='+fitem.Money}}
</span>
</p>
<p
style=
"font-size: 13px;"
v-if=
"item.SaleRemarks"
>
<span>
销售备注:
</span>
<span
style=
"color: red;"
>
{{
...
...
@@ -709,7 +720,7 @@
},
OrderList
:
{
handler
(
val
,
oldVal
)
{
if
((
this
.
pagesTitle
==
'申请'
||
this
.
pagesTitle
==
'审核'
||
_
this
.
pagesTitle
==
'查看'
)
&&
this
.
msgObj
.
OrderId
!=
if
((
this
.
pagesTitle
==
'申请'
||
this
.
pagesTitle
==
'审核'
||
this
.
pagesTitle
==
'查看'
)
&&
this
.
msgObj
.
OrderId
!=
0
&&
this
.
$route
.
query
.
OrderId
&&
this
.
$route
.
query
.
OrderType
&&
this
.
$route
.
query
.
DepartSTime
&&
...
...
@@ -1060,7 +1071,19 @@
});
}
});
}
},
// 单据详情
openDetails
(
FrID
)
{
console
.
log
(
FrID
);
let
query
=
{
id
:
FrID
,
blank
:
"y"
,
};
this
.
$router
.
push
({
name
:
"FinancialDocumentsDetail"
,
query
});
},
},
mounted
()
{
let
userInfo
=
this
.
getLocalStorage
();
...
...
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