Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
P
prd
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
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
caoxu
prd
Commits
85b0cc3d
Commit
85b0cc3d
authored
Jan 14, 2026
by
Jose
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
调整底部栏价格布局:将原始价格移到最终价格右侧同一行
parent
5e7a12a9
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
15 additions
and
13 deletions
+15
-13
ServiceDetailsView.vue
src/views/ServiceDetailsView.vue
+15
-13
No files found.
src/views/ServiceDetailsView.vue
View file @
85b0cc3d
...
...
@@ -152,11 +152,11 @@
<!-- Price and pay button - fixed at bottom -->
<div
class=
"bottom-bar"
>
<div
class=
"price-info"
>
<div
class=
"discount-details"
v-if=
"discountAmount > 0"
>
<div
class=
"original-price"
>
$
{{
originalPrice
}}
</div>
<div
class=
"discount-saving"
>
Saving: $
{{
discountAmount
}}
</div>
<div
class=
"discount-saving"
v-if=
"discountAmount > 0"
>
Saving: $
{{
discountAmount
}}
</div>
<div
class=
"price-row"
>
<div
class=
"price"
>
$
{{
totalPrice
}}
</div>
<div
class=
"original-price"
v-if=
"discountAmount > 0"
>
$
{{
originalPrice
}}
</div>
</div>
<div
class=
"price"
>
$
{{
totalPrice
}}
</div>
</div>
<button
class=
"pay-button"
@
click=
"openPopup"
>
Order Now
</button>
</div>
...
...
@@ -1070,13 +1070,13 @@ const selectCoupon = (couponId) => {
max-height
:
60pt
;
}
.
discount-details
{
.
price-row
{
display
:
flex
;
align-items
:
center
;
gap
:
12
pt
;
margin-bottom
:
2
pt
;
height
:
2
0pt
;
line-height
:
20
pt
;
align-items
:
flex-end
;
gap
:
9
pt
;
height
:
30
pt
;
line-height
:
3
0pt
;
margin-top
:
2
pt
;
}
.original-price
{
...
...
@@ -1085,15 +1085,17 @@ const selectCoupon = (couponId) => {
color
:
#999
;
text-decoration
:
line-through
;
height
:
100%
;
line-height
:
20pt
;
line-height
:
30pt
;
margin-bottom
:
0
;
}
.discount-saving
{
font-size
:
11pt
;
/* 14.67px = 11pt */
font-weight
:
500
;
color
:
#42b883
;
height
:
100%
;
height
:
20pt
;
line-height
:
20pt
;
margin-bottom
:
2pt
;
}
.price
{
...
...
@@ -1102,7 +1104,7 @@ const selectCoupon = (couponId) => {
color
:
#ff6b35
;
height
:
30pt
;
line-height
:
30pt
;
margin-top
:
2pt
;
margin-top
:
0
;
}
.pay-button
{
...
...
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