分页统一
This commit is contained in:
parent
36e91f2d98
commit
e04a4415b6
@ -200,7 +200,7 @@ const getalarmsList = () => {
|
|||||||
// })
|
// })
|
||||||
}
|
}
|
||||||
|
|
||||||
const okSubmit = (val) => {
|
const okSubmit = (val: any) => {
|
||||||
console.log(val)
|
console.log(val)
|
||||||
getalarmsList()
|
getalarmsList()
|
||||||
}
|
}
|
||||||
@ -231,7 +231,7 @@ onMounted(() => {
|
|||||||
objectType: 10002,
|
objectType: 10002,
|
||||||
}).then((res) => {
|
}).then((res) => {
|
||||||
if (res.code == 200) {
|
if (res.code == 200) {
|
||||||
airBlowerList.value = res.data.map((item) => {
|
airBlowerList.value = res.data.map((item: any) => {
|
||||||
return {
|
return {
|
||||||
label: item.code,
|
label: item.code,
|
||||||
value: item.id,
|
value: item.id,
|
||||||
|
@ -277,7 +277,7 @@ const linkMonitorTableData = ref<LinkMonitorTableType[]>([])
|
|||||||
// 链路监视列表
|
// 链路监视列表
|
||||||
const paginationOptions = reactive({
|
const paginationOptions = reactive({
|
||||||
current: 1,
|
current: 1,
|
||||||
pageSize: 10,
|
pageSize: 20,
|
||||||
total: 0,
|
total: 0,
|
||||||
pageSizes: [20, 50, 100],
|
pageSizes: [20, 50, 100],
|
||||||
})
|
})
|
||||||
|
@ -232,7 +232,7 @@ const pageSetting = reactive({
|
|||||||
current: 1,
|
current: 1,
|
||||||
pageSize: 20,
|
pageSize: 20,
|
||||||
total: 0,
|
total: 0,
|
||||||
pageSizes: [10, 20, 30],
|
pageSizes: [20, 50, 100],
|
||||||
})
|
})
|
||||||
|
|
||||||
const getcurrentPage = () => {
|
const getcurrentPage = () => {
|
||||||
|
Loading…
Reference in New Issue
Block a user