From fc38d1c92f01a224e8373c4425481bb1d85e2bf3 Mon Sep 17 00:00:00 2001
From: 马宇豪 <978517621@qq.com>
Date: 星期五, 21 七月 2023 15:36:01 +0800
Subject: [PATCH] Merge remote-tracking branch 'origin/master'

---
 pages/tabBar/examine/examine.vue |   19 ++++++++++++++-----
 1 files changed, 14 insertions(+), 5 deletions(-)

diff --git a/pages/tabBar/examine/examine.vue b/pages/tabBar/examine/examine.vue
index bf4a83c..ee1d7d4 100644
--- a/pages/tabBar/examine/examine.vue
+++ b/pages/tabBar/examine/examine.vue
@@ -5,8 +5,11 @@
 			<!-- 状态栏占位 -->
 			<view class="statusBar" :style="{ paddingTop: statusBarHeight + 'px' }"></view>
 			<!-- 真正的导航栏内容 -->
-			<view class="navBar" >
-				<view class="barText">工作通知审核</view>
+			<view style="display: flex; flex-direction: column;" >
+				<view class="navBar">
+					<u-icon style=" margin-left: -25px;" name="arrow-left" color="black" size="17" @click="goBack" />
+					<view class="barText">工作通知审核</view>
+				</view>
 			</view>
 		</view>
 		<!-- 页面内容 -->
@@ -69,7 +72,7 @@
 				</view>
 			</view>
 		</view>
-		<tabBar :currentPagePath="page"></tabBar>
+		<!-- <tabBar :currentPagePath="page"></tabBar> -->
 	</view>
 </template>
 
@@ -78,7 +81,7 @@
 	import {getExamine} from '../../../api/examine.js'
 	export default {
 		components:{
-			tabBar
+			// tabBar
 		},
 		data() {
 			return {
@@ -126,6 +129,12 @@
 			this.getExanineList();
 		},
 		methods: {
+			goBack() {
+				console.log("1111")
+				uni.switchTab({
+				    url:'/pages/tabBar/firstPage/firstPage'
+				});
+			},
 			getExanineList() {
 				this.data.searchParams.reviewStatus = this.isReadOnly ? 1 : null;
 				this.data.searchParams.emergType = this.checked ? 1 : null;
@@ -194,7 +203,7 @@
 }
 .navBarBox .navBar {
 		background-color:lightgrey;
-		height: 25px;
+		height: 45px;
 		display: flex;
 		flex-direction: row;
 		justify-content: center;

--
Gitblit v1.9.2