|
@@ -1,5 +1,5 @@
|
|
|
<template>
|
|
|
- <view class="containerx">
|
|
|
+ <view class="container">
|
|
|
<view :style="{height: statusBarHeight + 'px'}"></view>
|
|
|
<!-- <view :style="{height: navBarHeight + 'px'}"></view> -->
|
|
|
<view class="page-content">
|
|
@@ -27,12 +27,15 @@
|
|
|
})
|
|
|
})
|
|
|
onLoad(() => {
|
|
|
- console.log('onLoad')
|
|
|
+ uni.setTabBarBadge({ //显示数字
|
|
|
+ index: 1, //tabbar下标
|
|
|
+ text: '999' //数字
|
|
|
+ })
|
|
|
})
|
|
|
</script>
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
- .containerx {
|
|
|
+ .container {
|
|
|
height: 100vh;
|
|
|
width: 100vw;
|
|
|
background-color: #f7f7f7;
|