Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
提交反馈
为 GitLab 提交贡献
登录
切换导航
P
pica.cloud.web-app-learning-report
项目
项目
详情
动态
版本
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
收起侧边栏
Close sidebar
动态
分支图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
guangjun.yang
pica.cloud.web-app-learning-report
提交
afa07321
提交
afa07321
编写于
11月 07, 2019
作者:
guangjun.yang
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
组件
上级
1b83af21
变更
11
隐藏空白字符变更
内嵌
并排
正在显示
11 个修改的文件
包含
290 行增加
和
2 行删除
+290
-2
lr-chart-hline.vue
components/bussiness/charts/lr-chart-hline.vue
+27
-0
lr-chart-pie.vue
components/bussiness/charts/lr-chart-pie.vue
+27
-0
lr-chart-vline.vue
components/bussiness/charts/lr-chart-vline.vue
+27
-0
commo-split-line.vue
components/common/commo-split-line.vue
+0
-0
common-header.vue
components/common/common-header.vue
+38
-0
common-loading.vue
components/common/common-loading.vue
+2
-2
common-show-all.vue
components/common/common-show-all.vue
+61
-0
common-simple.vue
components/common/common-simple.vue
+27
-0
common-swiper-item.vue
components/common/common-swiper-item.vue
+27
-0
common-tabs.vue
components/common/common-tabs.vue
+27
-0
common-tips.vue
components/common/common-tips.vue
+27
-0
未找到文件。
components/bussiness/charts/lr-chart-hline.vue
0 → 100644
浏览文件 @
afa07321
<!-- 饼状图组件 -->
<
template
>
<section
class=
"lr-chart-pie"
>
</section>
</
template
>
<
script
>
export
default
{
props
:
{
tapList
:
{
type
:
Array
,
default
:
()
=>
[]
}
},
methods
:
{
},
}
</
script
>
<
style
lang=
"scss"
scoped
>
@import
'@/assets/style/mixin'
;
@import
'@/assets/style/global'
;
.lr-chart-pie
{
margin-top
:
0
;
}
</
style
>
components/bussiness/charts/lr-chart-pie.vue
0 → 100644
浏览文件 @
afa07321
<!-- 饼状图组件 -->
<
template
>
<section
class=
"lr-chart-pie"
>
</section>
</
template
>
<
script
>
export
default
{
props
:
{
tapList
:
{
type
:
Array
,
default
:
()
=>
[]
}
},
methods
:
{
},
}
</
script
>
<
style
lang=
"scss"
scoped
>
@import
'@/assets/style/mixin'
;
@import
'@/assets/style/global'
;
.lr-chart-pie
{
margin-top
:
0
;
}
</
style
>
components/bussiness/charts/lr-chart-vline.vue
0 → 100644
浏览文件 @
afa07321
<!-- 饼状图组件 -->
<
template
>
<section
class=
"lr-chart-pie"
>
</section>
</
template
>
<
script
>
export
default
{
props
:
{
tapList
:
{
type
:
Array
,
default
:
()
=>
[]
}
},
methods
:
{
},
}
</
script
>
<
style
lang=
"scss"
scoped
>
@import
'@/assets/style/mixin'
;
@import
'@/assets/style/global'
;
.lr-chart-pie
{
margin-top
:
0
;
}
</
style
>
components/common/
SplitL
ine.vue
→
components/common/
commo-split-l
ine.vue
浏览文件 @
afa07321
文件已移动
components/common/common-header.vue
0 → 100644
浏览文件 @
afa07321
<!-- 头部组件 -->
<
template
>
<section
class=
"common-header"
:style=
"
{'background-color': bgColor}">
<img
src=
""
@
click=
"back"
/>
<span></span>
</section>
</
template
>
<
script
>
export
default
{
props
:
{
title
:
{
type
:
String
,
default
:
'项目名称'
},
bgColor
:
{
type
:
String
,
default
:
'#fff'
}
},
methods
:
{
back
()
{
if
(
true
)
{
this
.
$router
.
history
(
-
1
);
}
else
{
this
.
$rocNative
.
back
();
}
}
},
}
</
script
>
<
style
lang=
"scss"
scoped
>
@import
'@/assets/style/mixin'
;
@import
'@/assets/style/global'
;
.common-header
{
margin-top
:
px2rem
(
60px
);
}
</
style
>
components/common/
L
oading.vue
→
components/common/
common-l
oading.vue
浏览文件 @
afa07321
<
template
>
<div
class=
"loader loader--style3"
title=
"2"
>
<div
class=
"
common-
loader loader--style3"
title=
"2"
>
<div
class=
"loader-mask"
></div>
<svg
version=
"1.1"
id=
"loader-1"
xmlns=
"http://www.w3.org/2000/svg"
xmlns:xlink=
"http://www.w3.org/1999/xlink"
x=
"0px"
y=
"0px"
width=
"40"
height=
"40"
viewBox=
"0 0 60 60"
style=
"enable-background:new 0 0 80 80;"
xml:space=
"preserve"
>
...
...
@@ -19,7 +19,7 @@
<
style
lang=
"scss"
scoped
>
@import
'@/assets/style/mixin'
;
.loader
{
.
common-
loader
{
&
-mask
{
position
:
fixed
;
top
:
0
;
...
...
components/common/common-show-all.vue
0 → 100644
浏览文件 @
afa07321
<
template
>
<section
class=
"common-show-all"
>
<span
:class=
"
{'margin-top15': needMarginTop}" @click="showAllItem">
{{
btnText
}}
</span>
</section>
</
template
>
<
script
>
export
default
{
data
()
{
return
{
}
},
props
:
{
needMarginTop
:
{
type
:
Boolean
,
default
:
false
},
btnText
:
{
type
:
String
,
default
:
'查看全部'
},
itemIndex
:
{
type
:
String
,
default
:
'0'
}
},
methods
:
{
showAllItem
()
{
this
.
$emit
(
'showAllItem'
)
}
}
}
</
script
>
<
style
lang=
"scss"
scoped
>
@import
'@/assets/style/mixin'
;
// @import '@/assets/style/global';
.common-show-all
{
display
:
flex
;
flex-direction
:
column
;
align-items
:
center
;
justify-content
:
center
;
margin-bottom
:
px2rem
(
6px
);
span
{
display
:
inline-block
;
width
:
px2rem
(
345px
);
height
:
px2rem
(
40px
);
line-height
:
px2rem
(
40px
);
margin-bottom
:
px2rem
(
15px
);
text-align
:
center
;
border-radius
:
px2rem
(
22px
);
color
:
#676869
;
background
:
#F8F9FA
;
}
.margin-top15
{
margin-top
:
px2rem
(
15px
);
}
}
</
style
>
components/common/common-simple.vue
0 → 100644
浏览文件 @
afa07321
<!-- Tabs组件 -->
<
template
>
<section
class=
"common-tabs"
>
</section>
</
template
>
<
script
>
export
default
{
props
:
{
tapList
:
{
type
:
Array
,
default
:
()
=>
[]
}
},
methods
:
{
},
}
</
script
>
<
style
lang=
"scss"
scoped
>
@import
'@/assets/style/mixin'
;
@import
'@/assets/style/global'
;
.common-tabs
{
margin-top
:
0
;
}
</
style
>
components/common/common-swiper-item.vue
0 → 100644
浏览文件 @
afa07321
<!-- Swipter的子组件 -->
<
template
>
<section
class=
"common-swiper-item"
>
</section>
</
template
>
<
script
>
export
default
{
props
:
{
itemData
:
{
type
:
Array
,
default
:
()
=>
[]
}
},
methods
:
{
},
}
</
script
>
<
style
lang=
"scss"
scoped
>
@import
'@/assets/style/mixin'
;
@import
'@/assets/style/global'
;
.common-swiper-item
{
margin-top
:
0
;
}
</
style
>
components/common/common-tabs.vue
0 → 100644
浏览文件 @
afa07321
<!-- Tabs组件 -->
<
template
>
<section
class=
"common-tabs"
>
</section>
</
template
>
<
script
>
export
default
{
props
:
{
tapList
:
{
type
:
Array
,
default
:
()
=>
[]
}
},
methods
:
{
},
}
</
script
>
<
style
lang=
"scss"
scoped
>
@import
'@/assets/style/mixin'
;
@import
'@/assets/style/global'
;
.common-tabs
{
margin-top
:
0
;
}
</
style
>
components/common/common-tips.vue
0 → 100644
浏览文件 @
afa07321
<!-- Tabs组件 -->
<
template
>
<section
class=
"common-tips"
>
</section>
</
template
>
<
script
>
export
default
{
props
:
{
tipList
:
{
type
:
Array
,
default
:
()
=>
[]
}
},
methods
:
{
},
}
</
script
>
<
style
lang=
"scss"
scoped
>
@import
'@/assets/style/mixin'
;
@import
'@/assets/style/global'
;
.common-tabs
{
margin-top
:
0
;
}
</
style
>
写
预览
Markdown
格式
0%
请重试
or
附加一个文件
附加文件
取消
您添加了
0
人
到此讨论。请谨慎行事。
先完成此消息的编辑!
取消
想要评论请
注册
或
登录