Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
杨炀
/
dance-pc
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
a12d666a
authored
2025-05-29 11:05:07 +0800
by
杨炀
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
no message
1 parent
ad7887fb
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
5 deletions
src/viewsPc/booking/component/choosePerson.vue
src/viewsPc/booking/ticket/index.vue
src/viewsPc/booking/component/choosePerson.vue
View file @
a12d666
<
template
>
<el-dialog
v-model=
"show"
width=
"500"
:title=
"languageFormat(language, '出行人信息', 'Travelers')"
center
append-to-body
>
<el-dialog
v-model=
"show"
width=
"500"
:title=
"languageFormat(language, '出行人信息', 'Travelers')"
center
append-to-body
>
<el-button
type=
"primary"
plain
@
click=
"addPeopl"
>
{{
languageFormat
(
language
,
"新增"
,
"Add"
)
}}
</el-button>
<el-radio-group
v-model=
"personId"
>
<div
v-for=
"(it, index) in personList"
:key=
"index"
class=
"e_item"
>
...
...
@@ -26,7 +27,7 @@
</el-dialog>
<el-dialog
v-model=
"showAdd"
title=
"新增出行人
"
center
append-to-body
>
<el-dialog
v-model=
"showAdd"
:title=
"language ==0?'新增出行人':'Add traveler'
"
center
append-to-body
>
<el-form
ref=
"formRef"
:model=
"form"
label-width=
"100px"
size=
"large"
style=
"margin: 80px"
...
...
@@ -122,9 +123,9 @@ const submit = () => {
if
(
valid
)
{
aadSceneCustomer
(
form
.
value
).
then
(
res
=>
{
if
(
res
.
data
==
-
100
)
{
proxy
.
$modal
.
msgError
(
'人员信息已存在
'
)
proxy
.
$modal
.
msgError
(
language
.
value
==
0
?
'人员信息已存在'
:
'Person information already exists
'
)
}
else
if
(
res
.
data
==
-
101
)
{
proxy
.
$modal
.
msgError
(
'实名认证未通过
'
)
proxy
.
$modal
.
msgError
(
language
.
value
==
0
?
'实名认证未通过'
:
'The real name authentication has not passed
'
)
}
else
{
proxy
.
$modal
.
msgSuccess
(
language
.
value
==
0
?
'添加成功'
:
'successfully added'
)
showAdd
.
value
=
false
...
...
src/viewsPc/booking/ticket/index.vue
View file @
a12d666
...
...
@@ -134,7 +134,13 @@
]"
@
click=
"selectSessionType(key)"
>
{{ key=='1000'?'日间场':'夜间场' }}
<span
v-if=
"key=='1000'"
>
{{
language == 0 ? '日间场' : 'Day'
}}
</span>
<span
v-else
>
{{
language == 0 ? '夜间场' : 'Night'
}}
</span>
<!-- {{ key=='1000'?'日间场':'夜间场' }}-->
</div>
</div>
</div>
...
...
Write
Preview
Styling with
Markdown
is supported
Attach a file
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 post a comment