Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
E
eduline
Overview
Overview
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
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
冷斌
eduline
Commits
dd01e8be
Commit
dd01e8be
authored
May 15, 2020
by
陈超
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
T
parent
b9c433ea
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
22 additions
and
2 deletions
+22
-2
addons/theme/stv1/_static_w3g/css/common.css
+2
-1
apps/home/Tpl/default/User/recharge_w3g.html
+20
-1
No files found.
addons/theme/stv1/_static_w3g/css/common.css
View file @
dd01e8be
...
...
@@ -828,7 +828,7 @@ div::-webkit-scrollbar {
position
:
relative
;
width
:
0
;
flex-grow
:
1
;
height
:
5
6
px
;
height
:
5
8
px
;
border-radius
:
8px
;
border
:
none
;
}
\ No newline at end of file
apps/home/Tpl/default/User/recharge_w3g.html
View file @
dd01e8be
...
...
@@ -2,7 +2,7 @@
<include
file=
"__THEME__/public_header_w3g"
/>
<div
id=
"app"
>
<div
class=
"layout_v"
>
<div
class=
"layout_v"
style=
"background: #F5F5F5;"
>
<div
class=
"vip_buy_top_state"
>
<span
class=
"text_12_400 color_999999"
>
当前身份:
<?php if($learnc['vip_type']==0):?>
非会员
<?php else: echo $learnc['vip_type_txt'];endif;?>
</span>
...
...
@@ -40,6 +40,14 @@
<span
class=
"text_16_600"
:class=
"isYear ? 'color_primary' : 'color_999999'"
>
{{yearPrice}}
</span>
</div>
</div>
<div
class=
"layout_h_v_c"
style=
"margin-top: 1.5rem"
>
<span
class=
"text_14_400 color_999999"
>
数量:
</span>
<van-icon
@
click=
"onMinus"
name=
"__THEME__/img/minus.png"
size=
"20"
></van-icon>
<span
class=
"text_16_600 color_primary"
style=
"margin-left: 0.5rem;margin-right: 0.5rem;"
></span>
<van-icon
@
click=
"onPlus"
name=
"__THEME__/img/plus.png"
size=
"20"
></van-icon>
<span
class=
"text_14_400 color_999999"
style=
"margin-left: 0.25rem;"
>
{{isYear ? "年" : "月"}}
</span>
</div>
</div>
</div>
...
...
@@ -168,6 +176,7 @@
return
{
type
:
1
,
isYear
:
false
,
count
:
1
,
vips
:
[]
}
},
...
...
@@ -197,6 +206,16 @@
r
.
color
=
{
background
:
"#F5A623"
}
}
})
},
methods
:
{
onMinus
:
function
()
{
if
(
this
.
count
-
1
>=
1
)
{
this
.
count
-=
1
}
},
onPlus
:
function
()
{
this
.
count
+=
1
}
}
})
...
...
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