景徳镇旅游微信小程序
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.

32 lines
562 B

7 months ago
3 months ago
7 months ago
7 months ago
7 months ago
6 months ago
7 months ago
7 months ago
7 months ago
7 months ago
7 months ago
7 months ago
7 months ago
7 months ago
7 months ago
7 months ago
  1. <script>
  2. export default {
  3. onLaunch: function() {
  4. this.$store.commit('getBanner')
  5. },
  6. onShow: function() {
  7. this.$store.commit('initConfig')
  8. this.$store.commit('getPosition')
  9. this.$store.commit('getSpotList')
  10. setInterval(() => {
  11. this.$store.commit('getPosition')
  12. }, 20000)
  13. },
  14. onHide: function() {
  15. }
  16. }
  17. </script>
  18. <style lang="scss">
  19. @import url("common.scss");
  20. /*每个页面公共css */
  21. body{
  22. background-color: $uni-bg-color;
  23. font-size: 30rpx;
  24. color: #333;
  25. }
  26. .page{
  27. padding-top: var(--window-top);
  28. }
  29. </style>