Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
B
basic-vue-admin
概览
概览
详情
活动
周期分析
版本库
存储库
文件
提交
分支
标签
贡献者
分支图
比较
统计图
问题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程表
图表
维基
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
Basic
basic-vue-admin
Commits
2f75a948
提交
2f75a948
authored
11月 26, 2020
作者:
陈小婷
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
feat: add basic-list page
上级
e8ccdc7f
隐藏空白字符变更
内嵌
并排
正在显示
4 个修改的文件
包含
179 行增加
和
0 行删除
+179
-0
page.ts
src/router/menus/modules/demo/page.ts
+4
-0
page.ts
src/router/routes/modules/demo/page.ts
+8
-0
data.tsx
src/views/demo/page/list/basic/data.tsx
+17
-0
index.vue
src/views/demo/page/list/basic/index.vue
+150
-0
没有找到文件。
src/router/menus/modules/demo/page.ts
浏览文件 @
2f75a948
...
...
@@ -106,6 +106,10 @@ const menu: MenuModule = {
},
children
:
[
{
path
:
'basic'
,
name
:
'标准列表'
,
},
{
path
:
'card'
,
name
:
'routes.demo.page.listCard'
,
},
...
...
src/router/routes/modules/demo/page.ts
浏览文件 @
2f75a948
...
...
@@ -219,6 +219,14 @@ const page: AppRouteModule = {
},
children
:
[
{
path
:
'basic'
,
name
:
'ListBasicPage'
,
component
:
()
=>
import
(
'/@/views/demo/page/list/basic/index.vue'
),
meta
:
{
title
:
'标准列表'
,
},
},
{
path
:
'card'
,
name
:
'ListCardPage'
,
component
:
()
=>
import
(
'/@/views/demo/page/list/card/index.vue'
),
...
...
src/views/demo/page/list/basic/data.tsx
0 → 100644
浏览文件 @
2f75a948
export
const
cardList
=
(()
=>
{
const
result
:
any
[]
=
[];
for
(
let
i
=
0
;
i
<
6
;
i
++
)
{
result
.
push
({
id
:
i
,
title
:
'Vben Admin'
,
description
:
'基于Vue Next, TypeScript, Ant Design Vue实现的一套完整的企业级后台管理系统'
,
datetime
:
'2020-11-26 17:39'
,
extra
:
'编辑'
,
icon
:
'logos:vue'
,
color
:
'#1890ff'
,
author
:
'Vben'
,
percent
:
20
*
(
i
+
1
),
});
}
return
result
;
})();
src/views/demo/page/list/basic/index.vue
0 → 100644
浏览文件 @
2f75a948
<
template
>
<div
:class=
"prefixCls"
>
<a-page-header
title=
"标准列表"
:ghost=
"false"
/>
<div
:class=
"`$
{prefixCls}__top`">
<a-row
:gutter=
"12"
>
<a-col
:span=
"8"
:class=
"`$
{prefixCls}__top-col`">
<div>
我的待办
</div>
<p>
8个任务
</p>
</a-col>
<a-col
:span=
"8"
:class=
"`$
{prefixCls}__top-col`">
<div>
本周任务平均处理时间
</div>
<p>
32分钟
</p>
</a-col>
<a-col
:span=
"8"
:class=
"`$
{prefixCls}__top-col`">
<div>
本周完成任务数
</div>
<p>
24个任务
</p>
</a-col>
</a-row>
</div>
<div
:class=
"`$
{prefixCls}__content`">
<a-list
:pagination=
"pagination"
>
<template
v-for=
"item in list"
:key=
"item.id"
>
<a-list-item
class=
"list"
>
<a-list-item-meta>
<template
#
avatar
>
<Icon
class=
"icon"
v-if=
"item.icon"
:icon=
"item.icon"
:color=
"item.color"
/>
</
template
>
<
template
#
title
>
<span>
{{
item
.
title
}}
</span>
<div
class=
"extra"
v-if=
"item.extra"
>
{{
item
.
extra
}}
</div>
</
template
>
<
template
#
description
>
<div
class=
"description"
>
{{
item
.
description
}}
</div>
<div
class=
"info"
>
<div><span>
Owner
</span>
{{
item
.
author
}}
</div>
<div><span>
开始时间
</span>
{{
item
.
datetime
}}
</div>
</div>
<div
class=
"progress"
>
<Progress
:percent=
"item.percent"
status=
"active"
/>
</div>
</
template
>
</a-list-item-meta>
</a-list-item>
</template>
</a-list>
</div>
</div>
</template>
<
script
lang=
"ts"
>
import
{
Progress
}
from
'ant-design-vue'
;
import
{
defineComponent
}
from
'vue'
;
import
Icon
from
'/@/components/Icon/index'
;
import
{
cardList
}
from
'./data'
;
export
default
defineComponent
({
components
:
{
Icon
,
Progress
},
setup
()
{
return
{
prefixCls
:
'list-basic'
,
list
:
cardList
,
pagination
:
{
show
:
true
,
pageSize
:
3
,
},
};
},
});
</
script
>
<
style
lang=
"less"
scoped
>
.list-basic
{
&__top
{
padding
:
24px
;
margin
:
24px
24px
0
24px
;
text-align
:
center
;
background
:
#fff
;
&-col
{
&:not(:last-child)
{
border-right
:
1px
dashed
rgba
(
206
,
206
,
206
,
0.4
);
}
div
{
margin-bottom
:
12px
;
font-size
:
14px
;
line-height
:
22px
;
color
:
rgba
(
0
,
0
,
0
,
0.45
);
}
p
{
margin
:
0
;
font-size
:
24px
;
line-height
:
32px
;
color
:
rgba
(
0
,
0
,
0
,
0.85
);
}
}
}
&
__content
{
padding
:
24px
;
margin
:
12px
24px
;
background
:
#fff
;
.list
{
position
:
relative
;
}
.icon
{
font-size
:
40px
!important
;
}
.extra
{
position
:
absolute
;
top
:
20px
;
right
:
15px
;
font-weight
:
normal
;
color
:
#1890ff
;
cursor
:
pointer
;
}
.description
{
display
:
inline-block
;
width
:
40%
;
}
.info
{
display
:
inline-block
;
width
:
30%
;
text-align
:
center
;
div
{
display
:
inline-block
;
padding
:
0
20px
;
span
{
display
:
block
;
}
}
}
.progress
{
display
:
inline-block
;
width
:
15%
;
vertical-align
:
top
;
}
}
}
</
style
>
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论