kitchendDevice/App.vue

49 lines
1.0 KiB
Vue

<script>
import {
mapState
} from "vuex";
export default {
computed: {
...mapState(["bleValue"]),
},
onLaunch: function() {
let that = this
that.$store.dispatch("getHomeConfig")
console.log('App Launch')
},
onShow: function() {
console.log('App Show')
},
onHide: function() {
console.log('App Hide')
},
methods: {
// handleHomeConfig() {
// let that = this
// that.$model.getHomeConfig({}).then(res => {
// if (res.code != 0) return
// that.$store.commit('changeMenuList', res.data.cook_label)
// that.$store.commit('changeFoodList', res.data.food_list)
// })
// },
}
}
</script>
<style lang="scss">
/* #ifndef APP-NVUE */
@import "/assets/common.scss";
@import "/assets/iconfont.css";
@import "/assets/iconfont-weapp-icon.css";
/* #endif*/
/*每个页面公共css */
.content {
display: flex;
flex-direction: column;
align-items: center;
/* justify-content: center; */
background-color: #f7f7f7;
min-height: 100vh;
}
</style>