1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- <template>
- <view class="content">
-
- </view>
- </template>
- <script>
- import $api from '@/static/js/api.js'
- var that = ''
- export default {
- data() {
- return {
- city: '',
- bgColor: '#848C99'
- }
- },
- onLoad() {
- that = this
- that.city = uni.getStorageSync('city')
-
-
- },
- onReady() {
- uni.setNavigationBarTitle({
- title: that.city
- })
- setTimeout(function() {
- uni.setNavigationBarColor({
- backgroundColor: that.bgColor
- })
- uni.setBackgroundColor({
- backgroundColor: that.bgColor
- })
- },500)
- },
- methods: {
-
- },
- }
- </script>
- <style lang="scss" scoped>
- .content {}
- </style>
|