学员端小程序
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
396 B

1 year ago
1 year ago
  1. import { mapState } from 'vuex'
  2. export default {
  3. computed: {
  4. ...mapState({
  5. city: state=> state.user.vuex_cityInfo.city,
  6. vuex_cityInfo: state=> state.user.vuex_cityInfo,
  7. vuex_userInfo: state=> state.user.vuex_userInfo,
  8. apiOk: state=> state.user.apiOk,
  9. }),
  10. },
  11. data() {
  12. return {
  13. }
  14. },
  15. onPullDownRefresh() {
  16. setTimeout(()=>{
  17. uni.stopPullDownRefresh()
  18. },1500)
  19. },
  20. }