Files
app-govern/App.vue
2023-03-16 15:26:25 +08:00

44 lines
1.0 KiB
Vue

<script>
import encrypt from './common/js/aes.js'
export default {
onLaunch: function () {
let cidAES = uni.getStorageSync('cidAES')
if (!cidAES) {
uni.getPushClientId({
success: (res) => {
console.log(res.cid);
uni.setStorageSync('cid', res.cid);
var cidAES = encrypt.Encrypt(res.cid, this.$config.key);
uni.setStorageSync('cidAES', cidAES);
},
fail (err) {
console.log(err)
}
})
}
},
onShow: function () {
console.log('App Show')
},
onHide: function () {
console.log('App Hide')
}
}
</script>
<style lang="scss">
/*每个页面公共css */
@import './common/css/base.scss';
/deep/ uni-tabbar .uni-tabbar__badge {
width: auto;
height: 28rpx;
line-height: 28rpx;
border-radius: 28rpx;
min-width: 28rpx;
font-size: 20rpx;
padding: 0 8rpx;
}
</style>