This commit is contained in:
yanran200730
2022-07-02 16:23:35 +08:00
parent 58022d5154
commit 2f31efcad8
3 changed files with 16 additions and 9 deletions

View File

@@ -1,5 +1,5 @@
<template>
<div class="grid">
<div class="grid" v-if="pageShow">
<div class="gird-wrapper">
<div class="gird-item">
<h2>一级网格</h2>
@@ -76,11 +76,13 @@
topGrid: [],
secondaryGrid: [],
tertiaryGrid: [],
tertiaryInfo: {}
tertiaryInfo: {},
pageShow: false
}
},
onLoad () {
this.$loading()
this.getInfo()
},
@@ -117,6 +119,10 @@
this.tertiaryGrid.push(...e.girdList)
})
}
this.$nextTick(() => {
this.pageShow = true
})
}
})
}