소스 검색

auto commit

gcz 4 년 전
부모
커밋
c8350915f2
3개의 변경된 파일26개의 추가작업 그리고 1개의 파일을 삭제
  1. 4 0
      common/css/common.css
  2. 18 1
      main.js
  3. 4 0
      pages/use/use.vue

+ 4 - 0
common/css/common.css

@@ -1,5 +1,9 @@
 /* 全屏状态栏占位 */
 .hold-status-bar{ height: var(--status-bar-height);width: 100%;display: none;}
+.custom-nav{position: fixed;top: var(--status-bar-height);left: 0;right: 0;height: 65rpx;line-height: 65rpx;color: #fff;}
+.custom-nav-left{position: absolute;left: 0;top: 0;padding-right: 40rpx;transform: rotate(180deg);}
+.custom-nav-left .iconfont{font-size: 35rpx;}
+.custom-nav-center{text-align: center;}
 /* 全屏图片背景 */
 .page-bg-wrap{position: fixed;left: 0;right: 0;top: 0;bottom: 0;}
 .page-bg{width: 100%;max-height: 100%;}

+ 18 - 1
main.js

@@ -81,7 +81,24 @@ const href = (data,type = 1) =>{
 
 Vue.config.productionTip = false;
 
-Vue.prototype.$api = {msg,http,href};
+const goback = () =>{
+	let pages = getCurrentPages();
+	console.log('pages',pages);
+	console.log('pages[0].route',pages[0].route);
+	// if(pages[0].route == 'pages/use/useRouter'){
+	if(pages.length == '2'){
+		uni.switchTab({
+			url:'/pages/index/index',
+			fail: (err) => {
+				console.log('switchTab',err)
+			}
+		})
+		return;
+	};
+	uni.navigateBack({})
+};
+
+Vue.prototype.$api = {msg,http,href,goback};
 Vue.prototype.$getimg = config.imgUrl;
 Vue.prototype.$getInnerImg = config.innerImgUrl;
 Vue.prototype.$onlineImg = config.onlineImg;

+ 4 - 0
pages/use/use.vue

@@ -3,6 +3,10 @@
 		<view class="hold-status-bar">
 			<!-- 占据了状态栏位置 -->
 		</view>
+		<view class="custom-nav">
+			<view class="custom-nav-left" @click="$api.goback"><text class="iconfont icon-jiantou"></text></view>
+			<view class="custom-nav-center"></view>
+		</view>
 		<view class="top-img">
 			<image :src="$getimg + 'use-bg-s1.png'" class="img" mode="widthFix"></image>
 		</view>