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