Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
提交反馈
为 GitLab 提交贡献
登录
切换导航
iBiz-Vue-R7-Res
项目
项目
详情
动态
版本
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
iBiz-R7前端标准模板
iBiz-Vue-R7-Res
提交
2a7b0dc4
提交
2a7b0dc4
编写于
12月 12, 2022
作者:
RedPig97
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
update: 增加表格分页组件
上级
c91367e3
变更
3
隐藏空白字符变更
内嵌
并排
正在显示
3 个修改的文件
包含
141 行增加
和
0 行删除
+141
-0
app-register.ts
src/app-register.ts
+2
-0
app-grid-pagination.scss
src/components/app-grid-pagination/app-grid-pagination.scss
+45
-0
app-grid-pagination.vue
src/components/app-grid-pagination/app-grid-pagination.vue
+94
-0
未找到文件。
src/app-register.ts
浏览文件 @
2a7b0dc4
...
...
@@ -138,6 +138,7 @@ import AppCtrlPos from './components/layout-element/structure/app-ctrl-pos/app-c
import
AppPresetButton
from
'./components/layout-element/interactive/app-preset-button/app-preset-button.vue'
;
import
AppFieldImageDynamic
from
'./components/layout-element/media/app-field-image-dynamic/app-field-image-dynamic.vue'
;
import
AppTodoList
from
'./components/app-todo-list/app-todo-list.vue'
;
import
AppGridPagination
from
'./components/app-grid-pagination/app-grid-pagination.vue'
;
import
ExtendActionTimeline
from
'./components/extend-action-timeline/extend-action-timeline.vue'
;
// 布局组件
import
AppIndexViewLayoutLeft
from
'./layout/index-view-layout-left/index-view-layout-left.vue'
;
...
...
@@ -304,6 +305,7 @@ export const AppComponents = {
v
.
component
(
'app-preset-button'
,
AppPresetButton
);
v
.
component
(
'app-field-image-dynamic'
,
AppFieldImageDynamic
);
v
.
component
(
'app-todo-list'
,
AppTodoList
);
v
.
component
(
'app-grid-pagination'
,
AppGridPagination
);
v
.
component
(
'extend-action-timeline'
,
ExtendActionTimeline
);
v
.
component
(
'app-pickup-view-layout'
,
AppPickUpViewLayout
);
},
...
...
src/components/app-grid-pagination/app-grid-pagination.scss
0 → 100644
浏览文件 @
2a7b0dc4
.grid-pagination
{
height
:
44px
;
padding
:
0
80px
0
20px
;
background-color
:
var
(
--
app-color-white
);
display
:
flex
;
justify-content
:
flex-end
;
align-items
:
center
;
gap
:
15px
;
color
:
var
(
--
app-color-gray-100
);
border-top
:
1px
solid
var
(
--
app-color-gray-400
);
.ivu-page
{
height
:
25px
;
display
:
flex
;
}
.ivu-page-simple-pager
{
pointer-events
:
none
;
cursor
:
pointer
;
input
{
border
:
0
;
}
}
.grid-page-pre-pro
{
transform
:
rotate
(
90deg
);
}
.grid-page-next-pro
{
transform
:
rotate
(
-90deg
);
}
.grid-page-pre-pro
,
.grid-page-next-pro
{
font-size
:
24px
;
margin-top
:
-2px
;
}
.ivu-icon
{
font-size
:
24px
;
color
:
var
(
--
app-color-gray-100
);
}
.grid-pagination__dropdown
{
span
{
color
:
var
(
--
app-color-black
);
font-weight
:
600
;
}
.ivu-icon
{
margin-left
:
15px
;
}
}
}
\ No newline at end of file
src/components/app-grid-pagination/app-grid-pagination.vue
0 → 100644
浏览文件 @
2a7b0dc4
<
template
>
<row
class=
"grid-pagination"
>
<dropdown
class=
"grid-pagination__dropdown"
@
on-click=
"handleSizeChange"
>
Show
<span>
{{
limit
}}
</span>
<icon
type=
"ios-arrow-down"
></icon>
<template
#
list
>
<dropdownMenu>
<dropdownItem
v-for=
"(value, index) in pageSize"
:key=
"index"
:name=
"value"
>
{{
value
}}
条/页
</dropdownItem>
</dropdownMenu>
</
template
>
</dropdown>
<div
class=
"grid-page-pre-pro"
>
<i
class=
"el-icon-download"
></i>
</div>
<page
class=
"pull-right"
:transfer=
"true"
:total=
"totalRow"
simple
size=
"small"
:current=
"curPage"
:page-size=
"limit"
@
on-change=
"handleChange($event)"
>
</page>
<div
class=
"grid-page-next-pro"
>
<i
class=
"el-icon-download"
></i>
</div>
</row>
</template>
<
script
lang=
"ts"
>
import
{
Vue
,
Component
,
Prop
}
from
"vue-property-decorator"
;
@
Component
({})
export
default
class
AppGridPagination
extends
Vue
{
/**
* 总行数
*
* @type {number}
* @memberof AppGridPagination
*/
@
Prop
()
totalRow
!
:
number
;
/**
* 当前页
*
* @type {number}
* @memberof AppGridPagination
*/
@
Prop
()
curPage
!
:
number
;
/**
* 分页大小
*
* @type {number}
* @memberof AppGridPagination
*/
@
Prop
()
limit
!
:
number
;
/**
* 分页数数组
*
* @type {Array<*>}
* @memberof AppGridPagination
*/
public
pageSize
=
[
10
,
20
,
30
,
40
,
50
,
60
,
70
,
80
,
90
,
100
];
/**
* 处理当前页改变
*
* @type {number}
* @memberof AppGridPagination
*/
public
handleChange
(
$event
:
any
)
{
this
.
$emit
(
'page-change'
,
$event
);
}
/**
* 处理分页大小改变
*
* @type {number}
* @memberof AppGridPagination
*/
public
handleSizeChange
(
$event
:
any
)
{
this
.
$emit
(
'page-size-change'
,
$event
);
}
}
</
script
>
<
style
lang=
"scss"
>
@import
"./app-grid-pagination.scss"
;
</
style
>
编辑
预览
Markdown
格式
0%
请重试
or
添加新附件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
先完成此消息的编辑!
取消
想要评论请
注册
或
登录