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
ebb895f1
Commit
ebb895f1
authored
Jul 11, 2025
by
吴春
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
1
parent
3657dccf
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
19 additions
and
19 deletions
+19
-19
addPassenger.vue
src/components/SalesModule/addPassenger.vue
+19
-19
No files found.
src/components/SalesModule/addPassenger.vue
View file @
ebb895f1
...
...
@@ -930,13 +930,13 @@
if
(
type
)
{
findIndex
=
this
.
options
.
findIndex
(
x
=>
x
.
value
==
e
)
let
obj
=
this
.
options
[
findIndex
]
this
.
addMsg
.
SurName
=
obj
.
name
this
.
addMsg
.
ESurName
=
obj
.
label
this
.
addMsg
.
SurName
=
obj
.
name
.
toUpperCase
();
this
.
addMsg
.
ESurName
=
obj
.
label
.
toUpperCase
();
}
else
{
findIndex
=
this
.
optionsNames
.
findIndex
(
x
=>
x
.
value
==
e
)
let
obj
=
this
.
optionsNames
[
findIndex
]
this
.
addMsg
.
Name
=
obj
.
name
this
.
addMsg
.
EName
=
obj
.
label
this
.
addMsg
.
Name
=
obj
.
name
.
toUpperCase
();
this
.
addMsg
.
EName
=
obj
.
label
.
toUpperCase
();
}
},
remoteMethod
(
query
,
type
)
{
...
...
@@ -1092,12 +1092,12 @@
if
(
tempObj
)
{
//中文姓
if
(
tempObj
.
SurName
&&
tempObj
.
SurName
!=
''
)
{
this
.
addMsg
.
SurName
=
tempObj
.
SurName
;
this
.
addMsg
.
SurName
=
tempObj
.
SurName
.
toUpperCase
()
;
this
.
Transformation
(
this
.
addMsg
.
SurName
,
'SurName'
);
}
//中文名
if
(
tempObj
.
Name
&&
tempObj
.
Name
!=
''
)
{
this
.
addMsg
.
Name
=
tempObj
.
Name
;
this
.
addMsg
.
Name
=
tempObj
.
Name
.
toUpperCase
()
;
this
.
Transformation
(
this
.
addMsg
.
Name
,
'Name'
);
}
//性别
...
...
@@ -1388,7 +1388,7 @@
this
.
options
.
push
({
label
:
x
.
toUpperCase
(),
value
:
index
+
1
,
name
:
this
.
addMsg
.
SurName
,
name
:
this
.
addMsg
.
SurName
.
toUpperCase
()
,
})
})
if
(
names
!=
null
&&
names
.
length
==
1
){
...
...
@@ -1423,7 +1423,7 @@
this
.
optionsNames
.
push
({
label
:
x
.
toUpperCase
(),
value
:
index
+
1
,
name
:
this
.
addMsg
.
Name
,
name
:
this
.
addMsg
.
Name
.
toUpperCase
()
,
})
})
if
(
names
!=
null
&&
names
.
length
==
1
){
...
...
@@ -1908,17 +1908,17 @@
},
getData
:
function
()
{
this
.
loading
=
true
this
.
apipost
(
"sellorder_get_GetTravelGuestList"
,
{
OrderId
:
this
.
$route
.
query
.
orderId
},
res
=>
{
if
(
res
.
data
.
resultCode
==
1
)
{
this
.
GroupStartDateStr
=
res
.
data
.
data
.
GroupStartDateStr
;
}
else
{
this
.
$message
.
error
(
res
.
data
.
message
)
}
this
.
loading
=
false
});
this
.
loading
=
true
this
.
apipost
(
"sellorder_get_GetTravelGuestList"
,
{
OrderId
:
this
.
$route
.
query
.
orderId
},
res
=>
{
if
(
res
.
data
.
resultCode
==
1
)
{
this
.
GroupStartDateStr
=
res
.
data
.
data
.
GroupStartDateStr
;
}
else
{
this
.
$message
.
error
(
res
.
data
.
message
)
}
this
.
loading
=
false
});
},
},
mounted
()
{
...
...
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