weather.vue 637 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. <template>
  2. <view class="content">
  3. </view>
  4. </template>
  5. <script>
  6. import $api from '@/static/js/api.js'
  7. var that = ''
  8. export default {
  9. data() {
  10. return {
  11. city: '',
  12. bgColor: '#848C99'
  13. }
  14. },
  15. onLoad() {
  16. that = this
  17. that.city = uni.getStorageSync('city')
  18. },
  19. onReady() {
  20. uni.setNavigationBarTitle({
  21. title: that.city
  22. })
  23. setTimeout(function() {
  24. uni.setNavigationBarColor({
  25. backgroundColor: that.bgColor
  26. })
  27. uni.setBackgroundColor({
  28. backgroundColor: that.bgColor
  29. })
  30. },500)
  31. },
  32. methods: {
  33. },
  34. }
  35. </script>
  36. <style lang="scss" scoped>
  37. .content {}
  38. </style>