Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
E
educationStu
Project
Project
Details
Activity
Releases
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
向伟
educationStu
Commits
9f3fbe3f
Commit
9f3fbe3f
authored
Jan 07, 2022
by
Mac
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
我的学习页面
parent
95fff39c
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
637 additions
and
11 deletions
+637
-11
study.js
src/api/study.js
+34
-0
indexassembly.vue
src/pages/index/components/indexassembly.vue
+1
-1
vear-carousel.vue
src/pages/study/components/vear-carousel/vear-carousel.vue
+201
-0
index.vue
src/pages/study/index.vue
+401
-10
xingxing.png
src/static/image/xingxing.png
+0
-0
No files found.
src/api/study.js
View file @
9f3fbe3f
...
...
@@ -9,4 +9,38 @@ export function getMyStudyCourseList(data) {
method
:
'post'
,
data
})
}
/**
* 获取学习中心详情
* @param {JSON参数} data
*/
export
function
getMyStudyCourseInfo
(
data
)
{
return
request
({
url
:
'/AppletIndex/GetMyStudyCourseInfo'
,
method
:
'post'
,
data
})
}
/**
* 获取视频地址id
* @param {JSON参数} data
*/
export
function
getVideoPlayAuth
(
data
)
{
return
request
({
url
:
'/Video/GetVideoPlayAuth'
,
method
:
'post'
,
data
})
}
/**
* 获取视频地址
* @param {JSON参数} data
*/
export
function
getPlayInfo
(
data
)
{
return
request
({
url
:
'/Video/GetPlayInfo'
,
method
:
'post'
,
data
})
}
\ No newline at end of file
src/pages/index/components/indexassembly.vue
View file @
9f3fbe3f
...
...
@@ -133,7 +133,7 @@
})
if
(
res
&&
res
.
Data
.
phoneNumber
)
{
data
.
obj
.
phoneNum
=
res
.
Data
.
phoneNumber
// data.obj.phoneNum = '1
9138490577
'
// data.obj.phoneNum = '1
8328620563
'
data
.
obj
.
openid
=
res
.
Data
.
openid
data
.
obj
.
unionid
=
res
.
Data
.
unionid
that
.
phoneNumLogin
()
...
...
src/pages/study/components/vear-carousel/vear-carousel.vue
0 → 100644
View file @
9f3fbe3f
<
template
>
<swiper
class=
"image-container"
previous-margin=
"45rpx"
next-margin=
"45rpx"
:indicator-dots=
"true"
indicator-active-color=
'#4C50E7'
@
change=
"swiperChange"
>
<swiper-item
:class=
"currentIndex == index ? 'swiper-item' : 'swiper-item-side'"
v-for=
"(item, index) in imgList"
:key=
"item[urlKey]"
>
<!--
<image
@
click=
"clickImg(item)"
:class=
"currentIndex == index ? 'item-img' : 'item-img-side'"
:src=
"item[urlKey]"
lazy-load
:style=
"dontFirstAnimation ? 'animation: none;' : ''"
mode=
"aspectFill"
></image>
-->
<view
class=
"box"
:class=
"currentIndex == index ? 'item-img' : 'item-img-side'"
:style=
"
{background:item.B2BBackground ? getOpacityColor(item.B2BBackground,0.3):'#FFF',}">
<view
class=
"box-state"
>
<span
v-if=
"item.ClassStatus==1"
>
未开班
</span>
<span
v-if=
"item.ClassStatus==2"
>
学习中
</span>
<span
v-if=
"item.ClassStatus==3"
>
已结课
</span>
</view>
<view
class=
"box-center"
>
<view
class=
"box-center-l"
:style=
"
{background:item.B2BBackground ? getOpacityColor(item.B2BBackground,0.7):'#FFF',}">
<image
mode=
'widthFix'
:src=
"item.B2BIcon"
></image>
</view>
<view
class=
"box-center-r"
>
<view>
<view
style=
"font-size: 15px;font-weight: bold;"
>
{{
item
.
CourseName
}}
</view>
<view
style=
"font-size: 12px;font-weight: 500;margin-top: 5px;"
>
{{
item
.
ClassName
}}
</view>
<view
class=
"row"
style=
"font-size: 12px;margin-top: 5px;"
>
<view
class=
"row"
>
总计
<span
style=
"color: #4C50E7;margin:0 3px;font-weight: bold;"
>
{{
item
.
TotalHours
}}
</span>
课时
</view>
<view
style=
"width: 1px;height: 15px;background-color:#999999;margin: 0 10px;"
></view>
<view
class=
"row"
>
剩余
<span
style=
"color: #4C50E7;margin:0 3px;font-weight: bold;"
>
{{
item
.
SurplusHours
}}
</span>
课时
</view>
</view>
</view>
<view>
<view
class=
"row"
style=
"justify-content: space-between;font-size: 11px;"
>
<span>
已学课程
</span>
<span>
{{
item
.
CompleteHours
}}
/
{{
item
.
TotalHours
}}
</span>
</view>
<van-progress
:percentage=
"(item.CompleteHours/item.TotalHours)*100"
:showPivot=
'false'
/>
</view>
</view>
</view>
</view>
</swiper-item>
</swiper>
</
template
>
<
script
>
export
default
{
props
:
{
imgList
:
{
type
:
Array
,
default
()
{
return
[]
}
},
urlKey
:
{
type
:
String
,
default
()
{
return
''
}
},
},
data
()
{
return
{
currentIndex
:
0
,
dontFirstAnimation
:
true
}
},
methods
:
{
swiperChange
(
e
)
{
this
.
dontFirstAnimation
=
false
this
.
currentIndex
=
e
.
detail
.
current
;
this
.
$emit
(
'selected'
,
this
.
currentIndex
)
},
clickImg
(
item
)
{
this
.
$emit
(
'selected'
,
item
,
this
.
currentIndex
)
},
getOpacityColor
(
thisColor
,
thisOpacity
){
var
theColor
=
thisColor
.
toLowerCase
();
//十六进制颜色值的正则表达式
var
r
=
/^#
([
0-9a-fA-f
]{3}
|
[
0-9a-fA-f
]{6})
$/
;
// 如果是16进制颜色
if
(
theColor
&&
r
.
test
(
theColor
))
{
if
(
theColor
.
length
===
4
)
{
var
sColorNew
=
"#"
;
for
(
var
i
=
1
;
i
<
4
;
i
+=
1
)
{
sColorNew
+=
theColor
.
slice
(
i
,
i
+
1
).
concat
(
theColor
.
slice
(
i
,
i
+
1
));
}
theColor
=
sColorNew
;
}
//处理六位的颜色值
var
sColorChange
=
[];
for
(
var
i
=
1
;
i
<
7
;
i
+=
2
)
{
sColorChange
.
push
(
parseInt
(
"0x"
+
theColor
.
slice
(
i
,
i
+
2
)));
}
return
"rgba("
+
sColorChange
.
join
(
","
)
+
","
+
thisOpacity
+
")"
;
// return "rgba(" + sColorChange.join(",") + ", 0.7)";
}
return
theColor
;
}
}
}
</
script
>
<
style
scoped
>
.image-container
{
width
:
750
rpx
;
height
:
350
rpx
;
}
.item-img
{
width
:
630
rpx
;
height
:
300
rpx
;
border-radius
:
14
rpx
;
animation
:
to-big
.3s
;
}
.swiper-item
{
width
:
630
rpx
;
height
:
300
rpx
;
display
:
flex
;
justify-content
:
center
;
align-items
:
center
;
}
.item-img-side
{
width
:
630
rpx
;
height
:
260
rpx
;
border-radius
:
14
rpx
;
animation
:
to-mini
.3s
;
}
.swiper-item-side
{
width
:
630
rpx
;
height
:
260
rpx
;
display
:
flex
;
justify-content
:
center
;
align-items
:
center
;
}
.box
{
position
:
relative
;
display
:
flex
;
align-items
:
center
;
justify-content
:
center
;
/* padding: 0 20rpx; */
}
.box-center
{
display
:
flex
;
align-items
:
center
;
justify-content
:
space-between
;
width
:
calc
(
100%
-
36
rpx
);
}
.box-center-l
{
width
:
162
rpx
;
height
:
208
rpx
;
border-radius
:
6px
;
position
:
relative
;
}
.box-center-l
image
{
position
:
absolute
;
bottom
:
10
rpx
;
right
:
10
rpx
;
max-width
:
100
rpx
;
height
:
auto
;
}
.box-center-r
{
flex
:
1
;
margin-left
:
12px
;
min-height
:
208
rpx
;
display
:
flex
;
flex-direction
:
column
;
justify-content
:
space-between
;
}
.row
{
display
:
flex
;
align-items
:
center
;
}
.box-state
{
width
:
36
rpx
;
height
:
88
rpx
;
position
:
absolute
;
right
:
17px
;
top
:
0
;
background
:
#5DE3A6
;
font-size
:
20
rpx
;
color
:
#333333
;
text-align
:
center
;
}
@keyframes
to-mini
{
from
{
height
:
300
rpx
;
}
to
{
height
:
260
rpx
;
}
}
@keyframes
to-big
{
from
{
height
:
260
rpx
;
}
to
{
height
:
300
rpx
;
}
}
</
style
>
src/pages/study/index.vue
View file @
9f3fbe3f
This diff is collapsed.
Click to expand it.
src/static/image/xingxing.png
0 → 100644
View file @
9f3fbe3f
944 Bytes
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