소스 검색

完成首页初始化搭建

LinWuTai 2 달 전
부모
커밋
865be81839
3개의 변경된 파일15개의 추가작업 그리고 14개의 파일을 삭제
  1. 6 5
      pages/chat/chat.vue
  2. 6 3
      pages/index/index.vue
  3. 3 6
      pages/personalCenter/personalCenter.vue

+ 6 - 5
pages/chat/chat.vue

@@ -1,8 +1,6 @@
 <template>
-	<view class="containerx">
-		<view class="page-content">
-			消息
-		</view>
+	<view class="container">
+		消息
 	</view>
 </template>
 
@@ -11,7 +9,10 @@
 	import { onLoad } from '@dcloudio/uni-app'
 	
 	onLoad(() => {
-		console.log('onLoad')
+		uni.setTabBarBadge({ //显示数字  
+			index: 1, //tabbar下标
+			text: '999' //数字
+		})
 	})
 </script>
 

+ 6 - 3
pages/index/index.vue

@@ -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;

+ 3 - 6
pages/personalCenter/personalCenter.vue

@@ -1,8 +1,6 @@
 <template>
-	<view class="containerx">
-		<view class="page-content">
-			我的
-		</view>
+	<view class="container">
+		我的
 	</view>
 </template>
 
@@ -11,12 +9,11 @@
 	import { onLoad } from '@dcloudio/uni-app'
 	
 	onLoad(() => {
-		console.log('onLoad')
 	})
 </script>
 
 <style lang="scss" scoped>
-	.containerx {
+	.container {
 		height: 100vh;
 		width: 100vw;
 		background-color: #f7f7f7;