Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
提交反馈
为 GitLab 提交贡献
登录
切换导航
Y
year-end-activitiy
项目
项目
详情
动态
版本
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
收起侧边栏
Close sidebar
动态
分支图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
com.pica.cloud.foundation.frontend
year-end-activitiy
提交
d71713b5
提交
d71713b5
编写于
12月 17, 2019
作者:
Yuanzhao.dai
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
吸低元素兼容ios刘海屏下巴高度
上级
4e1c95a4
变更
7
隐藏空白字符变更
内嵌
并排
正在显示
7 个修改的文件
包含
45 行增加
和
13 行删除
+45
-13
personal-grade.less
assets/style/awards-list/personal-grade.less
+1
-1
rank.less
assets/style/awards-list/rank.less
+4
-3
pica-call-app.less
assets/style/pica-call-app.less
+4
-1
index.vue
components/h5header/index.vue
+14
-1
hospital-grades.vue
pages/awards-list/hospital-grades.vue
+15
-3
personal-grade.vue
pages/awards-list/personal-grade.vue
+3
-2
personal-rank.vue
pages/awards-list/personal-rank.vue
+4
-2
未找到文件。
assets/style/awards-list/personal-grade.less
浏览文件 @
d71713b5
...
...
@@ -2,7 +2,7 @@
.personal-grade-wrap {
.wrap-container {
width: 100%;
/*min-height: 907px;*/
min-height: 907px;
background: url("../../img/stage3/personal-grade.png") no-repeat;
background-size: cover;
position: relative;
...
...
assets/style/awards-list/rank.less
浏览文件 @
d71713b5
.rank-wrap {
.rank-list {
padding-left: 25px;
.rank-item {
padding: 20px 15px 20px
0
;
padding: 20px 15px 20px
25px
;
display: flex;
justify-content: space-between;
align-items: center;
...
...
@@ -97,10 +96,12 @@
position: fixed;
bottom: 0;
width: 100%;
background: #fff;
box-shadow: 0px -1Px 0px 0px #EDEDED;
.content {
height: 50px;
background: #fff;
box-shadow: 0px -0.5px 0px 0px #EDEDED;
display: flex;
align-items: center;
justify-content: space-between;
...
...
assets/style/pica-call-app.less
浏览文件 @
d71713b5
...
...
@@ -3,4 +3,7 @@
}
.padBott60 {
padding-bottom: 60px;
}
\ No newline at end of file
}
.marginBott60 {
margin-bottom: 60px;
}
components/h5header/index.vue
浏览文件 @
d71713b5
...
...
@@ -56,6 +56,12 @@
type
:
Boolean
,
default
:
false
},
isGoHistory
:
{
// 是否调用app goBack,'1',history.go(-1)
type
:
String
,
default
()
{
return
''
}
},
},
data
(){
return
{
...
...
@@ -108,7 +114,14 @@
component_tag
:
`301#301002`
});
}
this
.
$rocNative
.
goBack
();
if
(
this
.
isGoHistory
==
'1'
)
{
this
.
$router
.
go
(
-
1
)
}
else
{
this
.
$rocNative
.
goBack
();
}
},
goShare
(){
if
(
this
.
isStageTwoHomePage
){
...
...
pages/awards-list/hospital-grades.vue
浏览文件 @
d71713b5
...
...
@@ -2,7 +2,8 @@
<section
class=
"hospital-grade-wrap rank-wrap"
>
<h5header
v-if=
"!isWeb"
:title=
"title"
:title=
"title.hospitalType"
isGoHistory=
"1"
:isOpacity=
"false"
:shareObj=
"shareObj"
/>
<div
class=
"rank-list"
:class=
"
{'padBott60': isWeb}" :style="{ marginTop: isWeb?0:`${44+statusBarHeight}Px`}">
...
...
@@ -20,8 +21,13 @@
<p
class=
"name"
>
勤奋分
</p>
</div>
</div>
<div
class=
"no-more"
:style=
"
{marginBottom: `${50+homeIndicatorHeight}` + 'Px'}">
<span
class=
"line"
></span>
<span
class=
"text"
>
到底啦
</span>
<span
class=
"line"
></span>
</div>
</div>
<div
class=
"footer"
v-if=
"!isWeb"
>
<div
class=
"footer"
v-if=
"!isWeb"
:style=
"
{height: `${50+homeIndicatorHeight}` + 'Px'}"
>
<div
class=
"content"
>
<div
class=
"left"
>
<p
class=
"score"
>
我的机构勤奋分
<span>
{{
personalData
.
hospitalDiligence
}}
</span></p>
...
...
@@ -53,7 +59,12 @@
isWeb
:
false
,
personalData
:
{},
shareObj
:
wxShare
,
title
:
'星火榜榜单'
title
:
{
0
:
'星火榜榜单'
,
1
:
'萌芽榜榜单'
,
2
:
'奋进榜榜单'
,
3
:
'超越榜榜单'
}
}
},
async
asyncData
(
{
query
}
)
{
...
...
@@ -68,6 +79,7 @@
mounted
()
{
this
.
$rocNative
.
appInit
();
this
.
isWeb
=
this
.
$rocNative
.
isWeb
;
this
.
shareObj
.
shareUrl
=
location
.
href
;
//微信分享链接
if
(
!
this
.
isWeb
)
{
this
.
getPersonScore
();
};
...
...
pages/awards-list/personal-grade.vue
浏览文件 @
d71713b5
...
...
@@ -3,9 +3,10 @@
<h5header
v-if=
"!isWeb"
title=
"云鹊奖2019"
isGoHistory=
"1"
:isOpacity=
"false"
:shareObj=
"shareObj"
/>
<div
class=
"wrap-container"
:style=
"
{ marginTop: isWeb?0:`${44+statusBarHeight}Px`}">
<div
class=
"wrap-container"
:
class=
"
{'marginBott60': isWeb}" :
style="{ marginTop: isWeb?0:`${44+statusBarHeight}Px`}">
<img
src=
"~/assets/img/stage3/awards-title.png"
alt=
""
class=
"title"
>
<img
:src=
"dealAwardsIcon()"
alt=
""
class=
"awards-grade"
>
<div
class=
"personal-info"
>
...
...
@@ -52,7 +53,7 @@
<p>
{{
rightText2
}}
</p>
</div>
</div>
<div
class=
"task-details"
:class=
"
{'padBott60': isWeb}"
>
<div
class=
"task-details"
>
<div
class=
"task-item"
>
<img
src=
"~/assets/img/stage3/task-icon1.png"
alt=
""
>
<p
class=
"num"
>
{{
myGrades
.
clockCount
}}
次
</p>
...
...
pages/awards-list/personal-rank.vue
浏览文件 @
d71713b5
...
...
@@ -3,6 +3,7 @@
<h5header
v-if=
"!isWeb"
title=
"个人勤奋榜单"
isGoHistory=
"1"
:isOpacity=
"false"
:shareObj=
"shareObj"
/>
<div
class=
"rank-list"
:class=
"
{'padBott60': isWeb}" :style="{ marginTop: isWeb?0:`${44+statusBarHeight}Px`}">
...
...
@@ -21,13 +22,13 @@
<p
class=
"name"
>
勤奋分
</p>
</div>
</div>
<div
class=
"no-more"
>
<div
class=
"no-more"
:style=
"
{marginBottom: isWeb?0:`${50+homeIndicatorHeight}` + 'Px'}"
>
<span
class=
"line"
></span>
<span
class=
"text"
>
到底啦
</span>
<span
class=
"line"
></span>
</div>
</div>
<div
class=
"footer"
v-if=
"!isWeb"
>
<div
class=
"footer"
v-if=
"!isWeb"
:style=
"
{height: `${50+homeIndicatorHeight}` + 'Px'}"
>
<div
class=
"content"
>
<div
class=
"left"
>
<p
class=
"score"
>
我的勤奋分
<span>
{{
personalData
.
diligence
}}
</span></p>
...
...
@@ -72,6 +73,7 @@
mounted
()
{
this
.
$rocNative
.
appInit
();
this
.
isWeb
=
this
.
$rocNative
.
isWeb
;
this
.
shareObj
.
shareUrl
=
location
.
href
;
//微信分享链接
if
(
!
this
.
isWeb
)
{
this
.
getPersonScore
();
};
...
...
写
预览
Markdown
格式
0%
请重试
or
附加一个文件
附加文件
取消
您添加了
0
人
到此讨论。请谨慎行事。
先完成此消息的编辑!
取消
想要评论请
注册
或
登录