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({
isDisable: false,
});
}, 1000);
}, 5000);
}
onReset() {
this.setState({

View File

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

View File

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