Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
提交反馈
为 GitLab 提交贡献
登录
切换导航
iBiz-Vue-R7-Res
项目
项目
详情
动态
版本
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
iBiz-R7前端标准模板
iBiz-Vue-R7-Res
提交
4e443d1d
提交
4e443d1d
编写于
11月 16, 2022
作者:
RedPig97
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
update:代办列表组件更新
上级
b67d8160
变更
2
隐藏空白字符变更
内嵌
并排
正在显示
2 个修改的文件
包含
85 行增加
和
3 行删除
+85
-3
app-todo-list.less
src/components/app-todo-list/app-todo-list.less
+17
-0
app-todo-list.vue
src/components/app-todo-list/app-todo-list.vue
+68
-3
未找到文件。
src/components/app-todo-list/app-todo-list.less
浏览文件 @
4e443d1d
...
...
@@ -9,4 +9,21 @@
overflow: hidden;
text-overflow: ellipsis;
}
.app-todo-list__search {
width: 400px;
padding: 8px 0;
margin: 0 8px 0 auto;
}
.el-table {
height: calc(100% - 98px);
width: 100%;
overflow: auto;
}
.app-todo-list__pagination {
height: 50px;
display: flex;
align-items: center;
justify-content: flex-end;
padding-right: 8px;
}
}
\ No newline at end of file
src/components/app-todo-list/app-todo-list.vue
浏览文件 @
4e443d1d
<
template
>
<div
class=
'app-todo-list'
>
<el-table
:data=
"myTasks"
:border=
"true"
style=
"width: 100%"
>
<i-input
v-model=
"query"
search
enter-button
@
on-search=
"handleSearch"
class=
'app-todo-list__search'
placeHolder=
"标题"
/>
<el-table
:data=
"myTasks"
:border=
"true"
>
<el-table-column
prop=
""
sortable
label=
"标题"
>
<template
slot-scope=
"scope"
>
<span
class=
"title"
@
click=
"handleClick(scope.row)"
>
{{
scope
.
row
.
description
}}
</span>
...
...
@@ -13,11 +14,22 @@
<el-table-column
prop=
"createTime"
sortable
label=
"创建时间"
width=
"200"
>
</el-table-column>
</el-table>
<el-pagination
class=
"app-todo-list__pagination"
@
size-change=
"handleSizeChange"
@
current-change=
"handleCurrentChange"
:current-page=
"curPage"
:page-sizes=
"[10, 20, 30, 40, 50, 60, 70, 80, 90, 100]"
:page-size=
"limit"
layout=
"total, sizes, prev, pager, next, jumper"
:total=
"total"
>
</el-pagination>
</div>
</template>
<
script
lang =
'ts'
>
import
{
Environment
}
from
'@/environments/environment'
;
import
{
Http
}
from
'@/utils'
;
import
{
Component
,
Vue
}
from
'vue-property-decorator'
;
@
Component
({
...
...
@@ -29,6 +41,26 @@ export default class AppTodoList extends Vue {
*/
public
myTasks
:
any
[]
=
[];
/**
* 查询数据
*/
public
query
:
string
=
''
;
/**
* 分页条数
*/
public
limit
:
number
=
20
;
/**
* 当前分页
*/
public
curPage
:
number
=
0
;
/**
* 总条数
*/
public
total
:
number
=
0
;
/**
* vue创建
*/
...
...
@@ -40,10 +72,20 @@ export default class AppTodoList extends Vue {
* 获取待办列表
*/
public
getMyTasks
()
{
const
params
=
{
size
:
this
.
limit
,
page
:
this
.
curPage
};
let
url
:
any
=
'/wfcore/mytasks'
;
this
.
$http
.
get
(
url
).
then
((
response
:
any
)
=>
{
if
(
this
.
query
)
{
Object
.
assign
(
params
,
{
query
:
this
.
query
});
}
Http
.
getInstance
().
get
(
url
,
params
).
then
((
response
:
any
)
=>
{
if
(
response
&&
response
.
status
==
200
)
{
const
data
:
any
=
response
.
data
;
if
(
response
.
headers
[
'x-total'
]){
this
.
total
=
Number
(
response
.
headers
[
'x-total'
]);
}
const
data
:
any
=
response
.
data
||
[];
if
(
data
&&
data
.
length
>
0
)
{
this
.
myTasks
=
data
;
}
else
{
...
...
@@ -79,6 +121,29 @@ export default class AppTodoList extends Vue {
})
}
/**
* 处理搜索
*/
public
handleSearch
()
{
this
.
getMyTasks
();
}
/**
* 处理分页数改变
*/
public
handleSizeChange
(
size
:
number
)
{
this
.
limit
=
size
;
this
.
getMyTasks
();
}
/**
* 处理分页改变
*/
public
handleCurrentChange
(
page
:
number
)
{
this
.
curPage
=
page
;
this
.
getMyTasks
();
}
}
</
script
>
...
...
编辑
预览
Markdown
格式
0%
请重试
or
添加新附件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
先完成此消息的编辑!
取消
想要评论请
注册
或
登录