|
@@ -1,6 +1,6 @@
|
1
|
1
|
<template>
|
2
|
2
|
<view class="page">
|
3
|
|
- <MainPage @UserInfoChange="Init">
|
|
3
|
+ <MainPage ref="MainPage" @UserInfoChange="Init">
|
4
|
4
|
<view class="page flex-v">
|
5
|
5
|
|
6
|
6
|
<!-- 搜索 -->
|
|
@@ -93,6 +93,7 @@ export default {
|
93
|
93
|
Init () {
|
94
|
94
|
if (this.UserInfo !== null) {
|
95
|
95
|
this.MenuList = []
|
|
96
|
+ this.HasNextPage = true
|
96
|
97
|
this.GetArticleTypeList({ pageNum: 1, pageSize: 1000, status: 1 }).then((res) => {
|
97
|
98
|
this.MenuList = res.data.data.records || []
|
98
|
99
|
if (this.MenuList.length) {
|