Skip to content
Toggle navigation
Projects
Groups
Snippets
Help
Toggle navigation
This project
Loading...
Sign in
罗鑫霖
/
vion-tools
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Settings
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit b8fd74b3
authored
Mar 29, 2022
by
李君
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
设备时间错误校验增加分页
1 parent
47dca023
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
62 additions
and
5 deletions
src/views/EquipmentTimeErrorVerification/EquipmentTimeErrorVerification.vue
src/views/EquipmentTimeErrorVerification/EquipmentTimeErrorVerificationApi.js
src/views/EquipmentTimeErrorVerification/EquipmentTimeErrorVerification.vue
View file @
b8fd74b
<
template
>
<a-form
:model=
"queryForm"
layout=
"inline"
:label-col=
"
{ style: { width: '100px' } }">
<a-form-item
label=
"日期:"
style=
"padding: 5px 0"
>
<a-date-picker
v-model:value=
"queryForm.countDate"
style=
"width: 280px"
/>
</a-form-item>
<a-form-item
style=
"padding: 5px 0"
>
<a-button
type=
"primary"
@
click=
"search"
>
查询
</a-button>
</a-form-item>
</a-form>
<a-table
:dataSource=
"dataList"
v-loading=
"isLoading"
:columns=
"[
{
title: '集团名称',
...
...
@@ -51,30 +59,76 @@
]" :pagination="false">
</a-table>
<a-pagination
v-model:current=
"pageNum"
v-model:pageSize=
"pageSize"
:total=
"total"
:show-total=
"total => `共 $
{total} 条`" :pageSizeOptions="['10', '20']"
@change="onPageNumChange" @showSizeChange="onPageSizeChange" show-size-changer show-quick-jumper
style="text-align:center" />
</
template
>
<
script
>
import
{
defineComponent
,
ref
}
from
'vue'
import
moment
from
'moment'
import
{
defineComponent
,
ref
,
toRaw
,
reactive
}
from
'vue'
import
{
filterEmptyValueInObject
,
formatDate
}
from
'@/PublicUtil/PublicUtil'
import
equipmentTimeErrorVerificationApi
from
'@/views/EquipmentTimeErrorVerification/EquipmentTimeErrorVerificationApi'
export
default
defineComponent
({
setup
()
{
const
pageNum
=
ref
(
1
)
const
pageSize
=
ref
(
10
)
const
total
=
ref
()
const
dataList
=
ref
([])
const
isLoading
=
ref
(
false
)
const
__main
=
function
()
{
const
onPageNumChange
=
function
(
num
)
{
pageNum
.
value
=
num
confirmSearch
()
}
const
queryForm
=
reactive
(
{
countDate
:
moment
(
moment
().
format
(
'YYYY-MM-DD'
),
'YYYY-MM-DD'
)
}
)
const
onPageSizeChange
=
function
(
current
,
size
)
{
pageNum
.
value
=
1
pageSize
.
value
=
size
confirmSearch
()
}
const
confirmSearch
=
function
(){
isLoading
.
value
=
true
equipmentTimeErrorVerificationApi
.
getList
().
then
(
const
rawData
=
toRaw
(
queryForm
)
const
data
=
filterEmptyValueInObject
({
page
:
pageNum
.
value
-
1
,
pageSize
:
pageSize
.
value
,
countDate
:
formatDate
(
rawData
.
countDate
)
})
console
.
log
(
data
)
equipmentTimeErrorVerificationApi
.
getList
(
data
).
then
(
(
r
)
=>
{
isLoading
.
value
=
false
dataList
.
value
=
r
.
data
dataList
.
value
=
r
.
data
.
devices
total
.
value
=
r
.
data
.
pageNum
}
)
}
const
search
=
function
(){
pageNum
.
value
=
1
pageSize
.
value
=
10
confirmSearch
()
}
const
__main
=
function
()
{
confirmSearch
()
}
__main
()
return
{
queryForm
,
pageNum
,
pageSize
,
total
,
isLoading
,
dataList
,
onPageNumChange
,
onPageSizeChange
,
confirmSearch
,
search
}
},
})
...
...
src/views/EquipmentTimeErrorVerification/EquipmentTimeErrorVerificationApi.js
View file @
b8fd74b
...
...
@@ -7,6 +7,9 @@ class EquipmentTimeErrorVerificationApi {
{
method
:
'GET'
,
url
:
`/devices/deviceInfo`
,
params
:
filterEmptyValueInObject
(
data
)
}
)
}
...
...
Write
Preview
Markdown
is supported
Attach a file
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 post a comment