Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
提交反馈
为 GitLab 提交贡献
登录
切换导航
P
pica.cloud.web-education-admin
项目
项目
详情
动态
版本
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
统计图
成员
成员
收起侧边栏
Close sidebar
动态
分支图
统计图
提交
打开侧边栏
com.pica.cloud.education.frontend
pica.cloud.web-education-admin
提交
96fe378f
提交
96fe378f
编写于
12月 25, 2018
作者:
杨广俊
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
结果页面search方法调整
上级
c43378b8
变更
4
隐藏空白字符变更
内嵌
并排
正在显示
4 个修改的文件
包含
495 行增加
和
43 行删除
+495
-43
course-adjust.1.vue
src/components/business/course-adjust.1.vue
+488
-0
course-adjust.vue
src/components/business/course-adjust.vue
+0
-35
result.vue
src/views/result.vue
+2
-5
search-index.vue
src/views/search-index.vue
+5
-3
未找到文件。
src/components/business/course-adjust.1.vue
0 → 100644
浏览文件 @
96fe378f
<
template
>
<section>
<GroupTitle
groupTitle=
"大家在看"
:isShowNum=
"isShowNum"
/>
<div
class=
"cource-teach"
id=
"adjust-u"
>
<!--
<div
:class=
"isFixed ? 'cource-header fixed' : 'cource-header'"
:style=
"
{height:menuptop}">
<div
class=
"fixBox"
>
<div
class=
"bgFill"
:style=
"
{height:ptop}">
</div>
<div
class=
"font-title"
>
{{
title
}}
</div>
</div>
</div>
-->
<div
class=
"couse-cont"
>
<!--
<div
class=
"couse-list"
v-infinite-scroll=
"loadMore"
infinite-scroll-disabled=
"loading"
infinite-scroll-distance=
"10"
:style=
"'height:'+clientHeight"
>
-->
<div
class=
"couse-list"
infinite-scroll-disabled=
"loading"
infinite-scroll-distance=
"10"
:style=
"'height:'+clientHeight"
>
<div
v-show=
"index
<
4
"
:class=
"index%2==1 ? 'course-item end-left' : 'course-item'"
:key=
"index"
v-for=
"(item,index) in parmData"
>
<div
class=
"course-pic"
@
click=
"goToPage(item)"
>
<img
:src=
"item.courseInfoUrl"
class=
"pic-tec"
/>
<span
class=
"course-tag"
>
{{
item
.
disName
}}
</span>
</div>
<p
class=
"course-txt"
>
{{
item
.
name
}}
</p>
<div
class=
"course-opt"
>
<span
class=
"opt-info"
>
{{
!
item
.
showTime
?
''
:
item
.
showTime
+
' |'
}}
{{
item
.
joinNum
}}
人已学
</span>
<span
:class=
"item.whetherFavors==2?'opt collect':'opt collected'"
@
click=
"collectFun(item.whetherFavors,item.id,item.name)"
>
{{
item
.
whetherFavors
==
2
?
'收藏'
:
'已收藏'
}}
</span>
</div>
</div>
</div>
<!--
<div
class=
"loading-box"
>
<span
class=
"loading-more-txt"
v-if=
"isLoading"
>
努力加载中...
</span>
<span
class=
"no-more"
v-if=
"noMore"
>
没有更多了......
</span>
</div>
-->
</div>
<!--
<LOADING
v-if=
"isShowLoading"
></LOADING>
-->
</div>
</section>
</
template
>
<
script
>
import
{
Loadmore
,
Spinner
,
InfiniteScroll
}
from
'mint-ui'
;
import
GroupTitle
from
'@/components/business/group-title'
;
// import { setEventByModuleCode } from '@/utils/index'
// import LOADING from '../../components/common/loading-new';
export
default
{
data
()
{
return
{
isShowNum
:
false
,
list
:
[],
pageNo
:
2
,
isDisabled
:
false
,
pageSize
:
10
,
title
:
'为您推荐'
,
isCollected
:
''
,
allLoaded
:
true
,
loading
:
false
,
//是否滚动加载
isLoading
:
false
,
//加载中
noMore
:
false
,
clientHeight
:
'auto'
,
isShowLoading
:
true
,
menuHeight
:
0
,
ptop
:
20
,
popHeight
:
0
,
menuptop
:
0
,
isReauestBack
:
true
,
}
},
props
:
{
isFixed
:
{
default
:
false
,
type
:
Boolean
},
statusBarHeight
:
{
type
:
Number
,
default
:
0
},
adjustPageNo
:
{
type
:
Number
,
default
:
1
},
userToken
:
{
type
:
String
,
default
:
''
},
parmData
:
{
type
:
Array
,
default
:
()
=>
[]
},
},
mounted
()
{
// this.list = this.parmData;
// this.$store.dispatch("setSource", []);
//this.pageNo = this.adjustPageNo;
// if(window.__isAndroid){
// this.popHeight = this.statusBarHeight/2
// }else{
// this.popHeight = this.statusBarHeight
// }
// this.menuHeight = this.popHeight + 7 + 40 + "px";
// this.ptop = this.popHeight + "px";
// this.getData();
},
created
()
{
let
_this
=
this
;
window
.
__getStatusBarHeight
=
function
(
parm
)
{
if
(
window
.
__isAndroid
)
{
_this
.
popHeight
=
parseInt
(
parm
.
statusBarHeight
)
/
2
}
else
{
_this
.
popHeight
=
parm
.
statusBarHeight
}
_this
.
ptop
=
_this
.
popHeight
+
'px'
;
_this
.
menuptop
=
_this
.
popHeight
+
36
+
'px'
}
this
.
getStatusHight
()
},
watch
:
{
},
components
:
{
GroupTitle
// LOADING
},
methods
:
{
getStatusHight
()
{
rocNative
.
getStatusBarHeight
({
__funcName
:
'__getStatusBarHeight'
})
},
//跳转
goToPage
(
item
)
{
this
.
pageBurialPoin
({
menuLevel
:
1
,
menuCode
:
'm_home'
,
functionCode
:
'f_recommend'
,
actionCode
:
'c_course'
,
labelId
:
item
.
id
,
labelValue
:
item
.
name
,
})
this
.
pageNo
=
1
;
this
.
$emit
(
"setRefrshParm"
,
{
isclick
:
true
})
let
itemData
=
{
"title"
:
item
.
name
,
"imageUrl"
:
""
,
"appModuleInfo"
:
{
"code"
:
"M200"
,
"type"
:
4
,
"name"
:
"课程介绍页"
,
"paramFlag"
:
1
,
"paramList"
:
[{
"key"
:
"className"
,
"value"
:
"com.picahealth.yunque.activitys.courseplaynew.CourseIntroduceActivity###WeexCourseIntroViewController"
,
"type"
:
4
,
"seqNo"
:
1
},
{
"key"
:
"courseId"
,
"value"
:
`
${
item
.
id
}
`
,
"type"
:
1
,
"seqNo"
:
2
}
]
}
};
let
paramList
=
this
.
setEventByModuleCode
(
itemData
);
rocNative
.
dispatchEventByModuleCode
({
modeCode
:
itemData
.
appModuleInfo
.
code
,
jsonString
:
paramList
})
},
//滑动加载更多
loadMore
()
{
let
_this
=
this
;
if
(
_this
.
isReauestBack
)
{
_this
.
isLoading
=
true
;
//埋点
this
.
pageBurialPoin
({
menuLevel
:
1
,
menuCode
:
'm_home'
,
functionCode
:
'f_recommend'
,
actionCode
:
'c_load_more'
})
setTimeout
(()
=>
{
_this
.
getData
(
'loadMore'
);
},
500
)
}
},
//收藏 取消收藏
collectFun
(
status
,
id
,
name
)
{
// alert(this.userToken);
status
=
status
==
1
?
2
:
1
;
this
.
pageBurialPoin
({
menuLevel
:
1
,
menuCode
:
'm_home'
,
functionCode
:
'f_recommend'
,
actionCode
:
'c_collect'
,
labelId
:
id
,
labelValue
:
name
,
})
let
_this
=
this
,
parm
=
{
token
:
_this
.
userToken
,
type
:
status
,
courseId
:
id
,
setEntry
:
'headers'
,
data
:
{
token
:
_this
.
userToken
,
}
}
/// alert(this.token)
_this
.
POST
(
'contents/favors'
,
parm
).
then
(
function
(
res
)
{
if
(
res
.
code
===
'000000'
)
{
_this
.
handelData
(
id
,
status
);
}
else
{
//alert(res.message);
rocNative
.
showNativeToast
({
message
:
'注册登陆后才能收藏哦'
})
}
})
},
handelData
(
id
,
status
)
{
let
d
=
this
.
list
;
for
(
let
i
=
0
;
i
<
d
.
length
;
i
++
)
{
if
(
id
==
d
[
i
].
id
)
{
d
[
i
].
whetherFavors
=
status
;
}
}
},
//加载数据
getData
(
type
)
{
let
_this
=
this
,
parm
=
{
pageNo
:
_this
.
pageNo
,
pageSize
:
_this
.
pageSize
,
token
:
_this
.
userToken
,
setEntry
:
'headers'
}
_this
.
GET
(
'contents/courses/recommendCourseList'
,
parm
).
then
(
function
(
res
)
{
if
(
res
.
code
===
'000000'
)
{
if
(
res
.
data
==
null
||
res
.
data
.
length
==
0
)
{
res
.
data
=
[];
_this
.
isLoading
=
false
;
_this
.
noMore
=
true
;
_this
.
loading
=
true
;
_this
.
isReauestBack
=
false
;
}
else
{
_this
.
isReauestBack
=
true
;
_this
.
list
=
[...
_this
.
list
,
...
res
.
data
];
_this
.
isLoading
=
true
;
_this
.
noMore
=
false
;
_this
.
loading
=
false
;
_this
.
pageNo
+=
1
;
}
}
})
}
}
}
</
script
>
<!-- Add "scoped" attribute to limit CSS to this component only -->
<
style
lang=
"scss"
scoped
>
@import
'../../style/mixin.scss'
;
@import
'../../style/global.scss'
;
img
{
@include
bis
(
'../../images/evaluatBg.png'
);
}
.ellipsis
{
overflow
:
hidden
;
text-overflow
:
ellipsis
;
-webkit-line-clamp
:
2
;
width
:
px2rem
(
170px
);
}
.couse-list
{
overflow
:
hidden
;
}
.bgFill
{
background
:
inherit
;
height
:
px2rem
(
20px
);
}
.cource-teach
.cource-header
,
.couse-cont
{
padding
:
0
px2rem
(
15px
);
}
.couse-cont
{}
.fixBox
{}
.cource-header
{
/* margin: 0 0 px2rem(11px) 0;*/
/*height: px2rem(45px);*/
margin-bottom
:
px2rem
(
15px
);
.font-title
{
line-height
:
px2rem
(
36px
);
height
:
px2rem
(
36px
);
background
:
#fff
;
}
}
.loading-box
{
font-size
:
px2rem
(
16px
);
padding
:
px2rem
(
10px
)
0
px2rem
(
20px
)
0
;
text-align
:
center
;
span
{
color
:
#999
;
}
}
.change-part
{
margin-top
:
px2rem
(
10px
);
float
:
right
;
font-size
:
px2rem
(
11px
);
line-height
:
px2rem
(
11px
);
border
:
1px
solid
#A9AEB7
;
border-radius
:
px2rem
(
9px
);
vertical-align
:
middle
;
padding
:
px2rem
(
3px
)
px2rem
(
5px
)
px2rem
(
4px
)
px2rem
(
6px
);
img
{
width
:
px2rem
(
12px
);
height
:
px2rem
(
12px
);
}
}
.fixed
{
.fixBox
{
position
:
fixed
;
top
:
0
;
left
:
0
;
width
:
100%
;
z-index
:
112
;
.font-title
{
background
:
#44A99B
;
padding
:
0
px2rem
(
15px
);
color
:
#fff
;
}
}
.bgFill
{
background
:
#44A99B
;
}
}
.course-item
{
float
:
left
;
margin-bottom
:
px2rem
(
19px
);
margin-right
:
px2rem
(
5px
);
}
.end-left
{
margin-right
:
0
;
}
.course-pic
{
width
:
px2rem
(
170px
);
height
:
px2rem
(
95px
);
border-radius
:
px2rem
(
3px
);
position
:
relative
;
.pic-tec
{
width
:
100%
;
height
:
100%
;
display
:
block
;
border-radius
:
px2rem
(
3px
);
}
.course-tag
{
position
:
absolute
;
display
:
inline-block
;
top
:
px2rem
(
5px
);
left
:
px2rem
(
5px
);
line-height
:
px2rem
(
16px
);
height
:
px2rem
(
16px
);
color
:
#4A87D4
;
padding
:
0
px2rem
(
3px
);
background
:
#FAFCFF
;
border
:
1px
solid
#C3DCFB
;
font-size
:
px2rem
(
10px
);
border-radius
:
px2rem
(
2px
);
}
}
.course-txt
{
margin-top
:
px2rem
(
5px
);
font-size
:
px2rem
(
14px
);
line-height
:
px2rem
(
19px
);
max-height
:
px2rem
(
38px
);
color
:
#333
;
overflow
:
hidden
;
text-overflow
:
ellipsis
;
-webkit-line-clamp
:
2
;
width
:
px2rem
(
170px
);
}
.course-opt
{
font-size
:
px2rem
(
12px
);
position
:
relative
;
/*margin-top: px2rem(6px);*/
.opt-info
{
color
:
#999
;
}
.opt
{
display
:
inline-block
;
height
:
px2rem
(
18px
);
line-height
:
px2rem
(
18px
);
padding
:
0
px2rem
(
4px
);
position
:
absolute
;
right
:
0
;
top
:
0
;
}
.collect
{
background
:
#F7F8F9
;
color
:
#666
;
}
.collected
{
color
:
#F47A48
;
background
:
RGBA
(
244
,
122
,
72
,
0
.04
);
}
}
.font-title
{
font-size
:
px2rem
(
18px
);
font-weight
:
bold
;
color
:
#28344C
}
.title
{
font-size
:
px2rem
(
16px
);
text-align
:
left
;
width
:
px2rem
(
170px
);
max-height
:
px2rem
(
20px
);
}
</
style
>
src/components/business/course-adjust.vue
浏览文件 @
96fe378f
...
@@ -98,51 +98,16 @@ export default {
...
@@ -98,51 +98,16 @@ export default {
},
},
mounted
()
{
mounted
()
{
// this.list = this.parmData;
// this.$store.dispatch("setSource", []);
//this.pageNo = this.adjustPageNo;
// if(window.__isAndroid){
// this.popHeight = this.statusBarHeight/2
// }else{
// this.popHeight = this.statusBarHeight
// }
// this.menuHeight = this.popHeight + 7 + 40 + "px";
// this.ptop = this.popHeight + "px";
// this.getData();
},
},
created
()
{
created
()
{
let
_this
=
this
;
window
.
__getStatusBarHeight
=
function
(
parm
)
{
if
(
window
.
__isAndroid
)
{
_this
.
popHeight
=
parseInt
(
parm
.
statusBarHeight
)
/
2
}
else
{
_this
.
popHeight
=
parm
.
statusBarHeight
}
_this
.
ptop
=
_this
.
popHeight
+
'px'
;
_this
.
menuptop
=
_this
.
popHeight
+
36
+
'px'
}
this
.
getStatusHight
()
},
},
watch
:
{
},
components
:
{
components
:
{
GroupTitle
GroupTitle
// LOADING
},
},
methods
:
{
methods
:
{
getStatusHight
()
{
rocNative
.
getStatusBarHeight
({
__funcName
:
'__getStatusBarHeight'
})
},
//跳转
//跳转
goToPage
(
item
)
{
goToPage
(
item
)
{
this
.
pageBurialPoin
({
this
.
pageBurialPoin
({
...
...
src/views/result.vue
浏览文件 @
96fe378f
...
@@ -167,15 +167,12 @@ export default {
...
@@ -167,15 +167,12 @@ export default {
let
_this
=
this
;
let
_this
=
this
;
window
.
__getUserInfo
=
function
(
params
){
window
.
__getUserInfo
=
function
(
params
){
_this
.
token
=
params
.
userToken
_this
.
token
=
params
.
userToken
_this
.
search
()
_this
.
getAdjustData
()
_this
.
getAdjustData
()
}
}
if
(
window
.
__isWeb
)
{
_this
.
search
()
}
window
.
__refresh
=
function
(){
window
.
__refresh
=
function
(){
_this
.
getUserInfo
()
_this
.
getUserInfo
()
}
}
_this
.
search
()
window
.
addEventListener
(
'scroll'
,
this
.
scrollFun
);
window
.
addEventListener
(
'scroll'
,
this
.
scrollFun
);
},
},
mounted
(){
mounted
(){
...
@@ -424,7 +421,7 @@ export default {
...
@@ -424,7 +421,7 @@ export default {
background
:
#fff
;
background
:
#fff
;
border-bottom
:
1px
solid
#E7E7E7
;
border-bottom
:
1px
solid
#E7E7E7
;
&
-img
{
&
-img
{
padding
:
px2rem
(
21px
)
0
0
px2rem
(
16px
);
padding
:
px2rem
(
21px
)
0
px2rem
(
10px
)
px2rem
(
16px
);
width
:
px2rem
(
20px
);
width
:
px2rem
(
20px
);
height
:
px2rem
(
20px
);
height
:
px2rem
(
20px
);
// transform: rotate(180deg);
// transform: rotate(180deg);
...
...
src/views/search-index.vue
浏览文件 @
96fe378f
...
@@ -60,6 +60,7 @@ export default {
...
@@ -60,6 +60,7 @@ export default {
created
()
{
created
()
{
let
_self
=
this
;
let
_self
=
this
;
window
.
__getUserInfo_S
=
function
(
params
){
window
.
__getUserInfo_S
=
function
(
params
){
_self
.
setUserInfo
(
params
)
_self
.
token
=
params
.
userToken
_self
.
token
=
params
.
userToken
_self
.
getData
()
_self
.
getData
()
}
}
...
@@ -73,7 +74,8 @@ export default {
...
@@ -73,7 +74,8 @@ export default {
},
},
methods
:
{
methods
:
{
...
mapActions
({
...
mapActions
({
setStatusBarHeight
:
'setStatusBarHeight'
setStatusBarHeight
:
'setStatusBarHeight'
,
setUserInfo
:
'setUserInfo'
}),
}),
// 跳转到结果页面,并
// 跳转到结果页面,并
search
()
{
search
()
{
...
@@ -223,7 +225,7 @@ export default {
...
@@ -223,7 +225,7 @@ export default {
@import
'../style/mixin.scss'
;
@import
'../style/mixin.scss'
;
@import
'../style/global.scss'
;
@import
'../style/global.scss'
;
.mt-80
{
.mt-80
{
padding-top
:
px2rem
(
7
0px
);
padding-top
:
px2rem
(
8
0px
);
}
}
.mt-100
{
.mt-100
{
padding-top
:
px2rem
(
63px
)
!
important
;
padding-top
:
px2rem
(
63px
)
!
important
;
...
@@ -247,7 +249,7 @@ export default {
...
@@ -247,7 +249,7 @@ export default {
background
:
#fff
;
background
:
#fff
;
border-bottom
:
1px
solid
#E7E7E7
;
border-bottom
:
1px
solid
#E7E7E7
;
&
-img
{
&
-img
{
padding
:
px2rem
(
21px
)
0
0
px2rem
(
16px
);
padding
:
px2rem
(
21px
)
0
px2rem
(
10px
)
px2rem
(
16px
);
width
:
px2rem
(
20px
);
width
:
px2rem
(
20px
);
height
:
px2rem
(
20px
);
height
:
px2rem
(
20px
);
// transform: rotate(180deg);
// transform: rotate(180deg);
...
...
写
预览
Markdown
格式
0%
请重试
or
附加一个文件
附加文件
取消
您添加了
0
人
到此讨论。请谨慎行事。
先完成此消息的编辑!
取消
想要评论请
注册
或
登录