40 lines
858 B
Vue
40 lines
858 B
Vue
<script>
|
|
export default {
|
|
onTabItemClick(itemPath) {
|
|
// 例如,你可以在这里添加一个确认对话框
|
|
console.log("itemPath", itemPath)
|
|
},
|
|
onLaunch: function() {
|
|
// this.handleHomeConfig()
|
|
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>
|
|
/*每个页面公共css */
|
|
.content {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
/* justify-content: center; */
|
|
background-color: #efefef;
|
|
min-height: 100vh;
|
|
}
|
|
</style> |