Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
M
mt-education-mobile
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
王旭
mt-education-mobile
Commits
7771480d
Commit
7771480d
authored
Apr 06, 2020
by
yun
Browse files
Options
Browse Files
Download
Plain Diff
Merge remote-tracking branch 'origin/master'
parents
f48e9d5c
609a2334
Changes
8
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
16 additions
and
16 deletions
+16
-16
Coursediscuss.vue
src/components/CourseDiscuss/Coursediscuss.vue
+2
-2
DiscusssingleReply.vue
src/components/CourseDiscuss/DiscusssingleReply.vue
+2
-2
hSelector.vue
src/components/addTrain/hSelector.vue
+2
-2
hWrapper.vue
src/components/addTrain/hWrapper.vue
+1
-1
index.vue
src/views/CourseDetail/index.vue
+2
-1
IReleasedTrain.vue
src/views/PersonalCenter/IReleasedTrain.vue
+3
-5
IntegralDetail.vue
src/views/PersonalCenter/IntegralDetail.vue
+1
-1
index.vue
src/views/TrainDetail/index.vue
+3
-2
No files found.
src/components/CourseDiscuss/Coursediscuss.vue
View file @
7771480d
...
...
@@ -545,7 +545,7 @@ export default {
width:90%;
height:auto;
position: relative;
padding: 1
8
px 18px 1px 14px;
padding: 1
0.5
px 18px 1px 14px;
background-color: #F2F3F7;
border-radius:8px;
}
...
...
@@ -583,7 +583,7 @@ export default {
text-align: left;
display: flex;
flex-direction: row;
margin-bottom: 1
2
px
margin-bottom: 1
0
px
}
.discuss-person{
color: #191919;
...
...
src/components/CourseDiscuss/DiscusssingleReply.vue
View file @
7771480d
...
...
@@ -129,7 +129,7 @@ export default {
<
style
scoped
>
.discussWrap
{
width
:
100%
;
margin-bottom
:
1
5
px
;
margin-bottom
:
1
2
px
;
}
.singleReply
{
color
:
#333333
;
font-family
:
PingFang-SC-Regular
;
margin-bottom
:
12px
...
...
@@ -166,7 +166,7 @@ export default {
text-align
:
left
;
display
:
flex
;
flex-direction
:
row
;
margin-bottom
:
1
5
px
margin-bottom
:
1
2
px
}
.reply-person
{
color
:
#191919
;
...
...
src/components/addTrain/hSelector.vue
View file @
7771480d
...
...
@@ -203,7 +203,7 @@ export default {
transform: translate3d(0, 0, 0);
}
.h-selector-move-enter-active, .h-selector-move-leave-active {
transition: transform
.6
s;
transition: transform
0.1m
s;
}
.h-selector-move-enter, .h-selector-move-leave-to {
transform: translate3d(0, 100%, 0);
...
...
@@ -212,7 +212,7 @@ export default {
opacity: 1;
}
.h-selector-fade-enter-active, .h-selector-fade-leave-active {
transition: opacity
.4
s;
transition: opacity
0.1m
s;
}
.h-selector-fade-enter, .h-selector-fade-leave-to {
opacity: 0;
...
...
src/components/addTrain/hWrapper.vue
View file @
7771480d
...
...
@@ -48,7 +48,7 @@ export default {
// 初始化样式
style
:
{
transform
:
'translate3d(0px,0px,0px)'
,
transition
:
'transform
.3
s'
transition
:
'transform
0m
s'
},
activeIndex
:
0
,
// 当前激活的索引
startY
:
0
,
// 开始距离
...
...
src/views/CourseDetail/index.vue
View file @
7771480d
...
...
@@ -128,7 +128,7 @@
>
<!-- {{ item ==='评论' ? item +'(' + (discussLen > 999 ? '999+' : discussLen) + ')': item }} -->
{{item}}
<span
class=
"count"
>
<span
v-if=
"item === '评论'"
class=
"count"
>
{{ item ==='评论' ? (discussLen === 0 ? '' : (discussLen > 999 ? '999+' : discussLen)) : '' }}
</span>
<!-- <div-->
...
...
@@ -1413,6 +1413,7 @@ export default {
/*margin-bottom: 0.4vw;*/
/*font-weight: 800;*/
/*position: relative;*/
box-sizing: border-box;
color: @selectColor;
border-bottom: 2px solid @selectColor;
}
...
...
src/views/PersonalCenter/IReleasedTrain.vue
View file @
7771480d
...
...
@@ -258,7 +258,8 @@ export default {
this
.
$router
.
push
({
path
:
'/addTrain'
,
query
:
{
slId
:
this
.
businessId
slId
:
this
.
businessId
,
releaseState
:
this
.
releaseState
}
})
this
.
popupShow
=
false
...
...
@@ -387,10 +388,7 @@ export default {
addTrain
()
{
console
.
log
(
this
.
releaseState
,
'releaseState'
)
this
.
$router
.
push
({
name
:
'AddTrain'
,
query
:
{
releaseState
:
this
.
releaseState
}
name
:
'AddTrain'
})
},
// 下拉刷新事件
...
...
src/views/PersonalCenter/IntegralDetail.vue
View file @
7771480d
...
...
@@ -154,9 +154,9 @@ export default {
font-weight: 100;
}
.num{
margin-top: 13px;
font-size: 30px;
color: #ffffff;
padding: 12px 0px 10px;
}
}
.list-box{
...
...
src/views/TrainDetail/index.vue
View file @
7771480d
...
...
@@ -1679,6 +1679,7 @@ export default {
/*margin-bottom: 5px;*/
/*font-weight: 800;*/
border-bottom: 2px solid #5A96E9;
box-sizing: border-box;
/*position: relative;*/
color: #5A96E9;
}
...
...
@@ -1834,8 +1835,8 @@ export default {
flex-direction: column;
.three_porint{
position: absolute;
top:
40
%;
left: 5
2
%;
top:
37
%;
left: 5
0
%;
transform: translate(-50%, -50%);
-webkit-appearance: none;
line-height: 47.313px;
...
...
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