Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
F
fk-spider-web
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
周田
fk-spider-web
Commits
4da0d493
Commit
4da0d493
authored
Sep 04, 2025
by
yzh
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
feat:删除不要的
parent
aafd1af0
Hide whitespace changes
Inline
Side-by-side
Showing
11 changed files
with
249 additions
and
178 deletions
+249
-178
box3.png
src/assets/picture/box3.png
+0
-0
SidebarItem.vue
src/layout/components/Sidebar/SidebarItem.vue
+1
-3
index.vue
src/layout/components/Sidebar/index.vue
+0
-17
index.ts
src/router/index.ts
+12
-10
index.vue
src/views/os-dataDisplay/index.vue
+0
-13
index.vue
src/views/os-preprocessingRecord/index.vue
+0
-13
index.vue
src/views/os-system/index.vue
+0
-13
taskCard.vue
src/views/os-taskInformation/components/taskCard.vue
+34
-20
index.vue
src/views/os-taskInformation/index.vue
+90
-45
index.vue
src/views/os-taskManager/index.vue
+111
-31
index.vue
src/views/os-taskRecord/index.vue
+1
-13
No files found.
src/assets/picture/box3.png
0 → 100644
View file @
4da0d493
40.5 KB
src/layout/components/Sidebar/SidebarItem.vue
View file @
4da0d493
...
...
@@ -35,7 +35,6 @@ const alwaysShowRootMenu = computed(() => {
// 解析路径
const
resolvePath
=
(
routePath
:
string
)
=>
{
console
.
log
(
routePath
,
'222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222'
);
if
(
isExternal
(
routePath
))
{
return
routePath
...
...
@@ -81,8 +80,7 @@ const hasOneShowingChild = (children: MenuItem[] = [], parent: MenuItem): boolea
}
onMounted
(()
=>
{
// console.log(props.item,'555555555555555555');
// console.log(onlyOneChild.value,'6666666666666666666666');
})
</
script
>
...
...
src/layout/components/Sidebar/index.vue
View file @
4da0d493
...
...
@@ -14,22 +14,8 @@ const settingsStore = useSettingsStore()
const
appStore
=
useAppStore
()
const
{
sidebar
}
=
storeToRefs
(
appStore
)
const
{
sidebarLogo
}
=
storeToRefs
(
settingsStore
)
// 获取所有路由配置,而不仅仅是匹配的路由
// const routes = computed(() => {
// // 获取路由器中的所有路由
// return router.options.routes.filter(item => {
// // 过滤掉设置了hidden的路由
// // @ts-ignore - hidden 属性在实际路由对象中存在,但TypeScript类型定义中没有
// return !(item.hidden || (item.meta && item.meta.hidden))
// })
// })
const
routes
=
computed
(()
=>
{
// 递归过滤路由,包括子路由
console
.
log
(
router
.
options
.
routes
,
'99999999999999999999999'
);
const
filterHiddenRoutes
=
(
routes
:
RouteRecordRaw
[]):
RouteRecordRaw
[]
=>
{
return
routes
.
filter
((
route
:
any
)
=>
{
...
...
@@ -64,9 +50,6 @@ const activeMenu = computed(() => {
const
isCollapse
=
computed
(()
=>
!
sidebar
.
value
.
opened
)
onMounted
(()
=>
{
console
.
log
(
sidebar
.
value
,
'88888888888888'
);
console
.
log
(
router
.
options
.
routes
,
'11111111111111111111111111111111111111111111'
);
console
.
log
(
isCollapse
,
'6666666666666'
);
})
</
script
>
...
...
src/router/index.ts
View file @
4da0d493
...
...
@@ -220,30 +220,32 @@ export const constantRoutes: Array<RouteRecordRaw> = [
]
}
as
unknown
as
RouteRecordRaw
,
{
path
:
"/os-task
Manager
"
,
redirect
:
"/os-
status
/list"
,
path
:
"/os-task
Information
"
,
redirect
:
"/os-
taskInformation
/list"
,
component
:
Layout
,
children
:
[
{
path
:
"list"
,
name
:
"task
Manager
"
,
component
:
()
=>
import
(
"@/views/os-task
Manager
/index.vue"
),
meta
:
{
title
:
"任务
管理
"
,
icon
:
"Key"
}
name
:
"task
Information
"
,
component
:
()
=>
import
(
"@/views/os-task
Information
/index.vue"
),
meta
:
{
title
:
"任务
信息
"
,
icon
:
"Key"
}
},
]
}
as
unknown
as
RouteRecordRaw
,
{
path
:
"/os-task
Information
"
,
redirect
:
"/os-
taskInformation
/list"
,
path
:
"/os-task
Manager
"
,
redirect
:
"/os-
status
/list"
,
component
:
Layout
,
children
:
[
{
path
:
"list"
,
name
:
"task
Information
"
,
component
:
()
=>
import
(
"@/views/os-task
Information
/index.vue"
),
meta
:
{
title
:
"任务
信息
"
,
icon
:
"Key"
}
name
:
"task
Manager
"
,
component
:
()
=>
import
(
"@/views/os-task
Manager
/index.vue"
),
meta
:
{
title
:
"任务
执行记录
"
,
icon
:
"Key"
}
},
]
}
as
unknown
as
RouteRecordRaw
,
...
...
src/views/os-dataDisplay/index.vue
View file @
4da0d493
...
...
@@ -53,10 +53,6 @@
<div
class=
"pagination w-full flex flex-row-reverse pr-4 m-t-4"
>
<Pagination
:total=
"pageObj.total"
v-model:page=
"pageObj.pageNo"
v-model:limit=
"pageObj.pageSize"
@
pagination=
"getData"
/>
<!-- <el-pagination background v-model:current-page="currentPage4" v-model:page-size="pageSize4"
:page-sizes="[10, 20, 50, 100]" :size="paginationSize" :disabled="disabled"
layout="total, sizes, prev, pager, next, jumper" :total="400" @size-change="handleSizeChange"
@current-change="handleCurrentChange" /> -->
</div>
...
...
@@ -102,15 +98,6 @@ const pageObj = ref({
pageSize
:
10
,
pageNo
:
1
})
const
paginationSize
=
ref
(
'default'
)
const
disabled
=
ref
(
false
)
const
background
=
ref
(
false
)
const
currentPage4
=
ref
(
4
)
const
pageSize4
=
ref
(
10
)
const
handleSizeChange
=
(
val
:
number
)
=>
{
}
const
handleCurrentChange
=
(
val
:
number
)
=>
{
}
const
handleDetails
=
(
row
:
any
)
=>
{
console
.
log
(
row
);
}
...
...
src/views/os-preprocessingRecord/index.vue
View file @
4da0d493
...
...
@@ -49,10 +49,6 @@
<div
class=
"pagination w-full flex flex-row-reverse pr-4 m-t-4"
>
<Pagination
:total=
"pageObj.total"
v-model:page=
"pageObj.pageNo"
v-model:limit=
"pageObj.pageSize"
@
pagination=
"getData"
/>
<!-- <el-pagination background v-model:current-page="currentPage4" v-model:page-size="pageSize4"
:page-sizes="[10, 20, 50, 100]" :size="paginationSize" :disabled="disabled"
layout="total, sizes, prev, pager, next, jumper" :total="400" @size-change="handleSizeChange"
@current-change="handleCurrentChange" /> -->
</div>
...
...
@@ -112,15 +108,6 @@ const pageObj = ref({
pageSize
:
10
,
pageNo
:
1
})
const
paginationSize
=
ref
(
'default'
)
const
disabled
=
ref
(
false
)
const
background
=
ref
(
false
)
const
currentPage4
=
ref
(
4
)
const
pageSize4
=
ref
(
10
)
const
handleSizeChange
=
(
val
:
number
)
=>
{
}
const
handleCurrentChange
=
(
val
:
number
)
=>
{
}
const
handleDetails
=
(
row
:
any
)
=>
{
console
.
log
(
row
);
}
...
...
src/views/os-system/index.vue
View file @
4da0d493
...
...
@@ -38,10 +38,6 @@
<div
class=
"pagination w-full flex flex-row-reverse pr-4 m-t-4"
>
<Pagination
:total=
"pageObj.total"
v-model:page=
"pageObj.pageNo"
v-model:limit=
"pageObj.pageSize"
@
pagination=
"getData"
/>
<!-- <el-pagination background v-model:current-page="currentPage4" v-model:page-size="pageSize4"
:page-sizes="[10, 20, 50, 100]" :size="paginationSize" :disabled="disabled"
layout="total, sizes, prev, pager, next, jumper" :total="400" @size-change="handleSizeChange"
@current-change="handleCurrentChange" /> -->
</div>
...
...
@@ -83,15 +79,6 @@ const pageObj = ref({
pageSize
:
10
,
pageNo
:
1
})
const
paginationSize
=
ref
(
'default'
)
const
disabled
=
ref
(
false
)
const
background
=
ref
(
false
)
const
currentPage4
=
ref
(
4
)
const
pageSize4
=
ref
(
10
)
const
handleSizeChange
=
(
val
:
number
)
=>
{
}
const
handleCurrentChange
=
(
val
:
number
)
=>
{
}
const
handleDetails
=
(
row
:
any
)
=>
{
console
.
log
(
row
);
}
...
...
src/views/os-taskInformation/components/taskCard.vue
View file @
4da0d493
<!-- 任务执行统计卡片组件 -->
<
template
>
<div
class=
"taskCard p-7"
v-for=
"i in options"
:key=
"i.value"
>
<div
class=
"
titleStyle
"
>
<
span>
xx任务
</span
>
<span>
启用
</span>
<
el-switch
v-model=
"taskSwitch"
/
>
<div
class=
"
flex justify-center
"
>
<
el-form-item
>
<span
class=
"titleStyle"
>
任务名称
</span>
<
/el-form-item
>
</div>
<div
class=
"flex justify-center"
>
<
!--
<el-form-item>
--
>
<
el-form-item
>
<el-button
type=
"primary"
>
编辑
</el-button>
<el-button
type=
"success"
>
详情
</el-button>
<el-button
type=
"success"
>
执行记录
</el-button>
<el-button
type=
"danger"
>
删除
</el-button>
<
!--
</el-form-item>
--
>
<
/el-form-item
>
</div>
<div
class=
"wordStyle "
>
<span>
目标网站:
{{
successTask
}}
;
</span>
<span>
执行频率:
{{
successTask
}}
</span>
<div
class=
"wordStyle flex justify-center"
>
<el-form-item>
<el-space>
<span
class=
"wordStyle"
>
启用/停止:
</span>
<el-switch
v-model=
"taskSwitch"
/>
<span
class=
"wordStyle"
>
执行频率:
{{
successTask
}}
</span>
</el-space>
</el-form-item>
</div>
<div
class=
"wordStyle"
>
<span>
执行次数:
{{
failTask
}}
个;
</span>
<span>
成功次数:
{{
failTask
}}
个
</span>
<div
class=
"wordStyle flex justify-center"
>
<el-form-item>
<el-space>
<span
class=
"wordStyle"
>
执行次数:
{{
failTask
}}
个;
</span>
<span
class=
"wordStyle"
>
成功次数:
{{
failTask
}}
个
</span>
</el-space>
</el-form-item>
</div>
<div
class=
"wordStyle"
>
<span>
失败次数:
{{
failTask
}}
个;
</span>
<span>
异常记录:
{{
unusualTask
}}
个
</span>
<div
class=
"wordStyle flex justify-center"
>
<el-form-item>
<el-space>
<span
class=
"wordStyle"
>
失败次数:
{{
failTask
}}
个;
</span>
<span
class=
"wordStyle"
>
异常记录:
{{
unusualTask
}}
个
</span>
</el-space>
</el-form-item>
</div>
</div>
</
template
>
...
...
@@ -80,24 +93,25 @@ const options = [
background-image
:
url("@/assets/picture/box2.png")
;
background-size
:
100%
100%
;
background-repeat
:
no-repeat
;
//
background
:
#c6ebfc
;
margin-bottom
:
20px
;
//
border
:
1.5px
solid
rgb
(
255
,
255
,
255
);
width
:
350px
;
width
:
380px
;
font-size
:
20px
;
height
:
100%
;
border-radius
:
7px
;
.titleStyle
{
font-size
:
22px
;
margin-top
:
-5px
;
color
:
#FFFFFF
;
}
.wordStyle
{
font-size
:
16px
;
color
:
#FFFFFF
;
}
}
.el-button
:focus
{
outline
:
none
;
}
...
...
src/views/os-taskInformation/index.vue
View file @
4da0d493
<
template
>
<div
class=
"text-left p-6"
>
<el-form
inline
>
<el-form-item
label=
"所属爬虫:"
>
<el-select
v-model=
"taskValue"
placeholder=
"请选择"
style=
"width: 220px"
/>
</el-form-item>
<el-form-item
label=
"任务名称:"
>
<el-input
v-model=
"taskValue"
style=
"width: 220px"
/>
</el-form-item>
<el-form-item>
<el-space>
<el-button
type=
"primary"
>
查询
</el-button>
</el-space>
</el-form-item>
<el-form-item>
<el-space>
<el-button
type=
"primary"
>
新建任务
</el-button>
</el-space>
</el-form-item>
</el-form>
<div
class=
"m-t-7"
>
</div>
<div
class=
"text-left p-6 toolbarStyle"
>
<div
class=
"formStyle"
>
<el-form
inline
>
<el-form-item>
<el-text
class=
"mx-1"
>
所属爬虫:
</el-text>
</el-form-item>
<el-form-item>
<div>
<el-select
v-model=
"taskValue"
placeholder=
"请选择"
style=
"width: 220px"
>
<el-option
v-for=
"item in taskOptions"
:key=
"item.value"
:label=
"item.label"
:value=
"item.value"
/>
</el-select>
</div>
</el-form-item>
<el-form-item>
<el-text
class=
"mx-1"
>
任务名称:
</el-text>
</el-form-item>
<el-form-item>
<el-input
v-model=
"taskValue"
placeholder=
"请输入"
style=
"width: 220px"
/>
</el-form-item>
<el-form-item>
<el-space>
<el-button
type=
"primary"
>
查询
</el-button>
</el-space>
</el-form-item>
<el-form-item>
<el-space>
<el-button
type=
"primary"
>
新建任务
</el-button>
</el-space>
</el-form-item>
</el-form>
</div>
</div>
<div
class=
"cardStyle"
>
<taskCard
successTask=
"100"
failTask=
"10"
unusualTask=
"1"
/>
<div
class=
"
text-right
"
>
<div
class=
"
pagination w-full flex flex-row-reverse pr-18 m-t-0
"
>
<Pagination
:total=
"pageObj.total"
v-model:page=
"pageObj.pageNo"
v-model:limit=
"pageObj.pageSize"
@
pagination=
"getData"
/>
@
pagination=
"getData"
/>
</div>
</div>
</
template
>
<
script
setup
lang=
"ts"
>
...
...
@@ -73,35 +84,68 @@ const pageObj = ref({
pageSize
:
10
,
pageNo
:
1
})
const
paginationSize
=
ref
(
'default'
)
const
disabled
=
ref
(
false
)
const
background
=
ref
(
false
)
const
currentPage4
=
ref
(
4
)
const
pageSize4
=
ref
(
10
)
const
handleSizeChange
=
(
val
:
number
)
=>
{
}
const
handleCurrentChange
=
(
val
:
number
)
=>
{
}
const
handleDetails
=
(
row
:
any
)
=>
{
console
.
log
(
row
);
}
const
handleConfirm
=
(
row
:
any
)
=>
{
console
.
log
(
row
);
}
const
getData
=
()
=>
{
console
.
log
(
'getData'
);
}
</
script
>
<
style
scoped
>
.cardStyle
{
.cardStyle
{
display
:
flex
;
flex-wrap
:
wrap
;
justify-content
:
space-around
;
margin-top
:
1.5%
;
padding
:
10px
;
height
:
25vh
;
padding
:
8px
;
height
:
26vh
;
}
.el-text
{
color
:
#FFFFFF
;
}
.toolbarStyle
{
background-image
:
url("@/assets/picture/box3.png")
;
background-size
:
100%
100%
;
background-repeat
:
no-repeat
;
}
.formStyle
{
display
:
flex
;
justify-content
:
space-around
;
padding
:
3px
;
}
</
style
>
<
style
>
/* 修改el选择器的样式 */
.el-select__wrapper
{
background-color
:
#1d5484
;
box-shadow
:
none
;
}
/* 删除el选择器选中时的边框 */
.is-hovering
{
box-shadow
:
none
!important
;
}
/* 修改el输入框的样式 */
.el-input__wrapper
{
background-color
:
#1d5484
;
box-shadow
:
none
;
}
/* 修改el下拉框的背景颜色 */
.el-select-dropdown
{
background-color
:
#1d5484
;
}
/* 修改el下拉框选项的字体颜色 */
.el-select-dropdown__item
{
color
:
#FFFFFF
;
}
/* 修改el下拉框选项选中时的文字颜色 */
.el-select-dropdown__item
:hover
{
color
:
#409eff
;
}
</
style
>
\ No newline at end of file
src/views/os-taskManager/index.vue
View file @
4da0d493
<
template
>
<div
class=
"text-left p-10"
>
<el-form
inline
>
<el-form-item
label=
"所属爬虫:"
>
<el-select
v-model=
"taskValue"
placeholder=
"请选择"
style=
"width: 220px"
/>
</el-form-item>
<el-form-item
label=
"任务名称:"
>
<el-input
v-model=
"taskValue"
style=
"width: 220px"
/>
</el-form-item>
<el-form-item>
<el-space>
<el-button
type=
"primary"
>
查询
</el-button>
</el-space>
</el-form-item>
<el-form-item>
<el-space>
<el-button
type=
"primary"
>
新建任务
</el-button>
</el-space>
</el-form-item>
</el-form>
<div
class=
"m-t-7"
>
</div>
<div
class=
"text-left p-6 toolbarStyle"
>
<div
class=
"formStyle"
>
<el-form
inline
>
<el-form-item>
<el-text
class=
"mx-1"
>
任务名称:
</el-text>
</el-form-item>
<el-form-item>
<div>
<el-select
v-model=
"taskValue"
placeholder=
"请选择"
style=
"width: 220px"
>
<el-option
v-for=
"item in taskOptions"
:key=
"item.value"
:label=
"item.label"
:value=
"item.value"
/>
</el-select>
</div>
</el-form-item>
<el-form-item>
<el-text
class=
"mx-1"
>
时间:
</el-text>
</el-form-item>
<el-form-item>
<el-date-picker
v-model=
"timeValue"
type=
"datetimerange"
start-placeholder=
"Start date"
end-placeholder=
"End date"
format=
"YYYY-MM-DD HH:mm:ss"
date-format=
"YYYY/MM/DD ddd"
time-format=
"A hh:mm:ss"
/>
</el-form-item>
<el-form-item>
<el-text
class=
"mx-1"
>
调度状态:
</el-text>
</el-form-item>
<el-form-item>
<div>
<el-select
v-model=
"taskValue"
placeholder=
"请选择"
style=
"width: 220px"
>
<el-option
v-for=
"item in taskOptions"
:key=
"item.value"
:label=
"item.label"
:value=
"item.value"
/>
</el-select>
</div>
</el-form-item>
<el-form-item>
<el-space>
<el-button
type=
"primary"
>
查询
</el-button>
</el-space>
</el-form-item>
</el-form>
</div>
</div>
<div
class=
"m-t-8"
>
</div>
<el-table
:data=
"tableData"
style=
"width: 100%"
border
>
<el-table-column
type=
"selection"
width=
"40"
/>
<el-table-column
property=
"name"
label=
"序号"
width=
"55"
/>
<el-table-column
property=
"address"
label=
"任务名称"
show-overflow-tooltip
/>
<el-table-column
property=
"address"
label=
"目标网址"
show-overflow-tooltip
/>
<el-table-column
property=
"name"
label=
"序号"
width=
"55"
/>
<el-table-column
property=
"address"
label=
"任务名称"
show-overflow-tooltip
/>
<el-table-column
property=
"address"
label=
"目标网址"
show-overflow-tooltip
/>
<el-table-column
property=
"status"
label=
"是否启用"
>
<template
#
default=
"scope"
>
<el-switch
v-model=
"scope.row.status"
@
change=
"changeSwitch(scope.row)"
/>
<el-switch
v-model=
"scope.row.status"
@
change=
"changeSwitch(scope.row)"
/>
</
template
>
</el-table-column>
<el-table-column
property=
"address"
label=
"执行频率"
show-overflow-tooltip
/>
<el-table-column
property=
"address"
label=
"执行频率"
show-overflow-tooltip
/>
<el-table-column
property=
"address"
label=
"执行次数"
show-overflow-tooltip
/>
<el-table-column
property=
"address"
label=
"成功次数"
show-overflow-tooltip
/>
<el-table-column
property=
"address"
label=
"成功次数"
show-overflow-tooltip
/>
<el-table-column
property=
"address"
label=
"失败次数"
width=
"200"
show-overflow-tooltip
/>
<el-table-column
property=
"address"
label=
"异常记录"
width=
"200"
show-overflow-tooltip
/>
<el-table-column
label=
"操作"
width=
"220"
>
...
...
@@ -44,7 +68,7 @@
<el-button
size=
"small"
plain
type=
"success"
@
click=
"handleDetails(scope.row)"
>
详情
</el-button>
<el-button
size=
"small"
plain
type=
"danger"
@
click=
"handleConfirm(scope.row)"
>
<el-button
size=
"small"
plain
type=
"danger"
@
click=
"handleConfirm(scope.row)"
>
删除
</el-button>
</
template
>
...
...
@@ -65,7 +89,6 @@ import Pagination from '@/components/pagination/index.vue'
import
{
Search
}
from
'@element-plus/icons-vue'
const
searchInput
=
ref
(
''
)
const
errorValue
=
ref
(
''
)
const
taskValue
=
ref
(
''
)
const
timeValue
=
ref
(
''
)
...
...
@@ -107,7 +130,7 @@ const tableData = ref([
address4
:
'无'
,
address5
:
'10s'
,
address6
:
'2023-05-13 10:00:00'
,
status
:
0
status
:
0
}
])
const
pageObj
=
ref
({
...
...
@@ -141,4 +164,60 @@ const getData = () => {
}
</
script
>
<
style
scoped
></
style
>
<
style
scoped
>
.toolbarStyle
{
background-image
:
url("@/assets/picture/box3.png")
;
background-size
:
100%
100%
;
background-repeat
:
no-repeat
;
}
.formStyle
{
display
:
flex
;
justify-content
:
space-around
;
padding
:
3px
;
}
.el-text
{
color
:
#FFFFFF
;
}
</
style
>
<
style
>
/* 修改el选择器的样式 */
.el-select__wrapper
{
background-color
:
#1d5484
;
box-shadow
:
none
;
}
/* 删除el选择器选中时的边框 */
.is-hovering
{
box-shadow
:
none
!important
;
}
/* 修改el输入框的样式 */
.el-input__wrapper
{
background-color
:
#1d5484
;
box-shadow
:
none
;
}
/* 修改el下拉框的背景颜色 */
.el-select-dropdown
{
background-color
:
#1d5484
;
}
/* 修改el下拉框选项的字体颜色 */
.el-select-dropdown__item
{
color
:
#FFFFFF
;
}
/* 修改el下拉框选项选中时的文字颜色 */
.el-select-dropdown__item
:hover
{
color
:
#409eff
;
}
.el-date-picker__wrapper
{
border
:
none
;
}
</
style
>
\ No newline at end of file
src/views/os-taskRecord/index.vue
View file @
4da0d493
...
...
@@ -48,10 +48,7 @@
<div
class=
"pagination w-full flex flex-row-reverse pr-4 m-t-4"
>
<Pagination
:total=
"pageObj.total"
v-model:page=
"pageObj.pageNo"
v-model:limit=
"pageObj.pageSize"
@
pagination=
"getData"
/>
<!-- <el-pagination background v-model:current-page="currentPage4" v-model:page-size="pageSize4"
:page-sizes="[10, 20, 50, 100]" :size="paginationSize" :disabled="disabled"
layout="total, sizes, prev, pager, next, jumper" :total="400" @size-change="handleSizeChange"
@current-change="handleCurrentChange" /> -->
</div>
...
...
@@ -110,15 +107,6 @@ const pageObj = ref({
pageSize
:
10
,
pageNo
:
1
})
const
paginationSize
=
ref
(
'default'
)
const
disabled
=
ref
(
false
)
const
background
=
ref
(
false
)
const
currentPage4
=
ref
(
4
)
const
pageSize4
=
ref
(
10
)
const
handleSizeChange
=
(
val
:
number
)
=>
{
}
const
handleCurrentChange
=
(
val
:
number
)
=>
{
}
const
handleDetails
=
(
row
:
any
)
=>
{
console
.
log
(
row
);
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment