Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
jijin
/
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
e35d8ebc
authored
2024-08-08 19:02:35 +0800
by
zhangmeng
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
票务
1 parent
d39c19a0
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
20 additions
and
2 deletions
src/viewsPc/booking/ticket/index.vue
src/viewsPc/booking/ticket/index.vue
View file @
e35d8eb
...
...
@@ -98,6 +98,17 @@
</div>
</div>
</div>
<!-- 价格 -->
<div
class=
"select_item_box"
>
<div
class=
"label"
>
{{ triggerLanguage(language, '价格', "Price") }}
</div>
<div
class=
"select_item"
>
<div
class=
"tagActive"
style=
"min-width: 80px"
>
{{ language == 0 ? '¥' : '€' }} {{ language == 0 ? selectForm.price : selectForm.priceEn }}
</div>
</div>
</div>
<!-- button -->
<div
class=
"btn forPc"
style=
"margin-left: 40px"
@
click=
"toSelectSeat()"
>
{{ triggerLanguage(language, "添加观影人", "Add Moviegoers") }}
...
...
@@ -143,7 +154,9 @@ const matchForm = ref({})
const
tickClass
=
ref
([])
const
selectForm
=
ref
({
latId
:
null
,
id
:
null
id
:
null
,
price
:
'--'
,
priceEn
:
'--'
,
})
const
tickList
=
ref
([])
...
...
@@ -186,7 +199,12 @@ function select(v) {
}
function
selectTick
(
v
)
{
if
(
v
.
isView
!=
0
)
selectForm
.
value
.
id
=
v
.
id
if
(
v
.
isView
!=
0
)
{
selectForm
.
value
.
id
=
v
.
id
selectForm
.
value
.
price
=
v
.
price
selectForm
.
value
.
priceEn
=
v
.
priceEn
}
}
function
toSelectSeat
()
{
...
...
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