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
22822b75
Commit
22822b75
authored
5 years ago
by
黄媛媛
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
增加验证勾选才能跳转
parent
a276e04b
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
35 additions
and
20 deletions
+35
-20
addFinancialDocuments.vue
src/components/FinancialModule/addFinancialDocuments.vue
+13
-1
PassengerList.vue
src/components/Ticketing/PassengerList.vue
+22
-19
No files found.
src/components/FinancialModule/addFinancialDocuments.vue
View file @
22822b75
...
...
@@ -1464,7 +1464,19 @@ export default {
var
gjzd
=
guojizhongduan
==
''
?
''
:
'国际中段:'
+
guojizhongduan
;
var
sj
=
shuijin
==
''
?
''
:
'税金:'
+
shuijin
;
var
sc
=
shengcang
==
''
?
''
:
'升舱:'
+
shengcang
;
this
.
Description
=
gj
+
`\n`
+
gn
+
`\n`
+
gjzd
+
`\n`
+
sj
+
`\n`
+
sc
if
(
gj
!=
''
){
gj
=
gj
+
`\n`
}
if
(
gn
!=
''
){
gn
=
gn
+
`\n`
}
if
(
gjzd
!=
''
){
gjzd
=
gjzd
+
`\n`
}
if
(
sj
!=
''
){
sj
=
sj
+
`\n`
}
this
.
Description
=
gj
+
gn
+
gjzd
+
sj
+
sc
}
}
},
...
...
This diff is collapsed.
Click to expand it.
src/components/Ticketing/PassengerList.vue
View file @
22822b75
...
...
@@ -528,26 +528,29 @@
this
.
jipiaoObj
.
shengcangArr
.
push
(
x
.
GuestName
);
}
})
sessionStorage
.
setItem
(
"guoji"
,
JSON
.
stringify
(
this
.
jipiaoObj
));
let
orderObj
=
{
OrderID
:
0
,
OrderSource
:
4
,
Obj
:
JSON
.
parse
(
this
.
$route
.
query
.
Obj
),
SourceID
:
this
.
$route
.
query
.
id
,
TCIDList
:
JSON
.
parse
(
this
.
$route
.
query
.
TCIDList
),
companyIDList
:
JSON
.
parse
(
this
.
$route
.
query
.
companyIDList
),
isFromPassenger
:
true
,
}
this
.
$router
.
push
({
name
:
'ChoiceAddFinancialDocuments'
,
query
:
{
"Type"
:
2
,
"path"
:
""
,
'blank'
:
'y'
,
'orderObj'
:
JSON
.
stringify
(
orderObj
)
if
(
this
.
jipiaoObj
.
guojiArr
.
length
==
0
&&
this
.
jipiaoObj
.
guoneiArr
.
length
==
0
&&
this
.
jipiaoObj
.
gjzdArr
.
length
==
0
&&
this
.
jipiaoObj
.
shuijinArr
.
length
==
0
&&
this
.
jipiaoObj
.
shengcangArr
.
length
==
0
){
this
.
Error
(
'请选择旅客名单'
);
}
else
{
sessionStorage
.
setItem
(
"guoji"
,
JSON
.
stringify
(
this
.
jipiaoObj
));
let
orderObj
=
{
OrderID
:
0
,
OrderSource
:
4
,
Obj
:
JSON
.
parse
(
this
.
$route
.
query
.
Obj
),
SourceID
:
this
.
$route
.
query
.
id
,
TCIDList
:
JSON
.
parse
(
this
.
$route
.
query
.
TCIDList
),
companyIDList
:
JSON
.
parse
(
this
.
$route
.
query
.
companyIDList
),
isFromPassenger
:
true
,
}
});
this
.
$router
.
push
({
name
:
'ChoiceAddFinancialDocuments'
,
query
:
{
"Type"
:
2
,
"path"
:
""
,
'blank'
:
'y'
,
'orderObj'
:
JSON
.
stringify
(
orderObj
)
}
});
}
},
//设置全选
checkAllbox
(
x
,
y
)
{
...
...
This diff is collapsed.
Click to expand it.
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