盐都小程序
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

27 lines
572 B

1 year ago
<script>
export default {
onLaunch: function() {
console.log('App Launch')
5 months ago
this.Post({type: "SHFlag"},'/api/public_service/getKumgangHeadImgList').then(res => {
try {
5 months ago
// let SHFlag = res.data[0].title == 1 ? true : false
let SHFlag = res.data[0].image == 1 ? true : false
5 months ago
uni.setStorageSync('SHFlag', SHFlag)
} catch(e) {}
});
1 year ago
},
onShow: function() {
console.log('App Show')
},
onHide: function() {
console.log('App Hide')
}
}
</script>
<style>
/*每个页面公共css */
@import "@/static/css/base.css";
</style>