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
46b76d73
Commit
46b76d73
authored
Feb 06, 2024
by
吴春
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
1
parent
9293ba0e
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
60 additions
and
8 deletions
+60
-8
BasicDocuments.vue
src/components/FinancialModule/BasicDocuments.vue
+15
-0
FinancialDocumentsDetail.vue
src/components/FinancialModule/FinancialDocumentsDetail.vue
+19
-1
OrderFinancialPage.vue
...FinancialModule/FinancialSubmodule/OrderFinancialPage.vue
+1
-1
RecPayQueryTeam.vue
src/components/FinancialModule/RecPayQueryTeam.vue
+25
-6
No files found.
src/components/FinancialModule/BasicDocuments.vue
View file @
46b76d73
...
...
@@ -2355,6 +2355,7 @@ class="w135 _border_b_1">
isClientBankAccount
:
false
,
clientBankAccountData
:{},
helpBranchData
:{},
isSeeOrderLog
:
0
,
}
},
components
:
{
...
...
@@ -3182,6 +3183,16 @@ else if (Type==2) {
}
})
}
else
if
(
type
==
7
)
{
if
(
this
.
isSeeOrderLog
==
1
){
this
.
$router
.
push
({
name
:
path
,
query
:
{
id
:
id
,
blank
:
'y'
}
})
}
else
{
this
.
$router
.
push
({
name
:
path
,
query
:
{
...
...
@@ -3190,6 +3201,7 @@ else if (Type==2) {
blank
:
'y'
}
})
}
}
else
if
(
type
==
8
)
{
this
.
$router
.
push
({
name
:
path
,
...
...
@@ -4166,6 +4178,9 @@ else if (Type==2) {
if
(
ActionMenuCode
.
indexOf
(
'S_CheckBranchOrder'
)
!=
-
1
||
ActionMenuCode
.
indexOf
(
'S_CheckAllOrder'
)
!=
-
1
)
{
this
.
isOrderOP
=
true
}
if
(
ActionMenuCode
.
indexOf
(
'SeeOrderLog'
)
!=
-
1
){
this
.
isSeeOrderLog
=
1
}
},
mounted
()
{
let
userInfo
=
this
.
getLocalStorage
();
...
...
src/components/FinancialModule/FinancialDocumentsDetail.vue
View file @
46b76d73
...
...
@@ -1678,6 +1678,7 @@
ClientBankAccountTop
:
0
,
ActionMenuCode
:
''
,
typeSystem
:
0
,
isSeeOrderLog
:
0
,
}
},
components
:
{
...
...
@@ -1728,6 +1729,9 @@
if
(
ActionMenuCode
.
indexOf
(
'S_CheckBranchOrder'
)
!=
-
1
||
ActionMenuCode
.
indexOf
(
'S_CheckAllOrder'
)
!=
-
1
)
{
this
.
isOrderOP
=
true
}
if
(
ActionMenuCode
.
indexOf
(
'SeeOrderLog'
)
!=
-
1
){
this
.
isSeeOrderLog
=
1
}
},
methods
:
{
...
...
@@ -2506,7 +2510,18 @@
}
})
}
else
if
(
type
==
7
)
{
this
.
$router
.
push
({
if
(
this
.
isSeeOrderLog
==
1
){
this
.
$router
.
push
({
name
:
path
,
query
:
{
id
:
id
,
blank
:
'y'
}
})
}
else
{
this
.
$router
.
push
({
name
:
path
,
query
:
{
id
:
id
,
...
...
@@ -2514,6 +2529,8 @@
blank
:
'y'
}
})
}
}
else
if
(
type
==
8
)
{
if
(
OrderID
)
{
this
.
$router
.
push
({
...
...
@@ -2890,6 +2907,7 @@
// document.oncontextmenu = function(){return false;}
this
.
GetAuth
();
this
.
userInfo
=
this
.
getLocalStorage
();
this
.
ActionMenuCode
=
this
.
userInfo
.
ActionMenuCode
;
this
.
qjGroupId
=
this
.
QjGroupId
();
this
.
Financial_post_GetDetail
(
this
.
ID
)
this
.
queryMsg
.
FinanceId
=
this
.
$route
.
query
.
id
;
...
...
src/components/FinancialModule/FinancialSubmodule/OrderFinancialPage.vue
View file @
46b76d73
...
...
@@ -51,7 +51,7 @@ export default {
props
:[
"dataOrderList"
,
'dataOrderPreferPrice'
],
data
(){
return
{
tableOrderShow
:
fals
e
,
tableOrderShow
:
tru
e
,
}
},
watch
:{
...
...
src/components/FinancialModule/RecPayQueryTeam.vue
View file @
46b76d73
...
...
@@ -386,6 +386,7 @@ export default {
choiceDate
:
''
,
EmployeeId
:
0
,
noData
:
false
,
isSeeOrderLog
:
0
,
}
},
created
(){
...
...
@@ -419,8 +420,11 @@ export default {
}
else
{
this
.
defaultMonth
[
0
]
=
t2
;
}
let
userinfo
=
this
.
getLocalStorage
();
let
ActionMenuCode
=
userinfo
.
ActionMenuCode
;
if
(
ActionMenuCode
.
indexOf
(
'SeeOrderLog'
)
!=
-
1
){
this
.
isSeeOrderLog
=
1
}
},
components
:
{
"my-Bill"
:
myBill
,
...
...
@@ -478,10 +482,25 @@ export default {
})
}
if
(
type
==
2
){
this
.
$router
.
push
({
name
:
path
,
query
:
{
id
:
tcid
,
orderID
:
id
,
blank
:
'y'
,
isShow
:
false
}
})
if
(
this
.
isSeeOrderLog
==
1
){
this
.
$router
.
push
({
name
:
path
,
query
:
{
id
:
tcid
,
blank
:
'y'
}
})
}
else
{
this
.
$router
.
push
({
name
:
path
,
query
:
{
id
:
tcid
,
isShow
:
false
,
blank
:
'y'
}
})
}
}
},
getStartList1
()
{
// 获取出发城市
...
...
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