bug:vue和element實現的后台分頁,當前是第二頁,點擊搜索,強制設置current-page為1,但是當前頁還是第二頁沒有改變只是數據變了。
綁定一個變量
-
頁面
el-pagination v-if="pageshow"
<el-pagination v-if="pageshow" background @current-change="handleCurrentChange" style="float:right;margin: 10px" :page-size="10" layout="prev, pager, next,total" :total="totalCount"> </el-pagination>
query(val) { val ? this.form.currentPage = val : this.form.currentPage = 1 if(!val){ this.pageshow = false this.$nextTick(() => { this.pageshow = true }) } 請求數據....... },
