add user page footer

yhy
Dawn_Ocean 2024-03-07 11:14:33 +08:00
parent f37af7dacd
commit a5aa10d6f4
3 changed files with 4 additions and 2 deletions

View File

@ -39,7 +39,7 @@ export default class InformPage extends Component {
this.setState({ this.setState({
isDisable: false, isDisable: false,
}); });
}, 1000); }, 5000);
} }
onReset() { onReset() {
this.setState({ this.setState({

View File

@ -31,7 +31,7 @@ export default class SettingsPage extends Component {
this.setState({ this.setState({
isDisable: false, isDisable: false,
}); });
}, 1000); }, 5000);
} }
onReset() { onReset() {
this.setState({ this.setState({

View File

@ -4,6 +4,7 @@ import Taro from '@tarojs/taro';
import type CustomTabBar from '../../custom-tab-bar'; import type CustomTabBar from '../../custom-tab-bar';
import './user.scss'; import './user.scss';
import { AtList, AtListItem } from 'taro-ui'; import { AtList, AtListItem } from 'taro-ui';
import PageFooter from '@/components/PageFooter/PageFooter';
export default class UserPage extends Component { export default class UserPage extends Component {
// 以下是TabBar相关 // 以下是TabBar相关
@ -73,6 +74,7 @@ export default class UserPage extends Component {
onClick={this.reportPage} onClick={this.reportPage}
/> />
</AtList> </AtList>
<PageFooter />
</View> </View>
); );
} }