12345678910111213141516171819202122232425262728293031 |
- <script>
- export default {
- onLaunch(options) {
-
-
- // 检测客户端更新
- this.$store.dispatch('update/update', 0)
- },
- onShow() {
- // getApp().globalData.uploadUrl = this.$UPLOAD_URL
- // getApp().globalData.img_url = this.$IMG_URL
- },
- onHide() {
-
- },
- // globalData: {
- // uploadUrl: '',
- // img_url: ''
- // },
- methods: {
- }
- }
- </script>
- <style lang="scss">
- /*每个页面公共css */
- @import '@/uni_modules/uview-ui/index.scss';
- /* #ifndef APP-NVUE */
- @import '@/common/css/public.scss';
- /* #endif */
- </style>
|