Browse Source

链接跳转

twt 3 years ago
parent
commit
ede4af932e
6 changed files with 56 additions and 16 deletions
  1. 16 7
      components/pcNav/pcNav.vue
  2. 5 0
      pages/index/index.vue
  3. 11 2
      pages/pc/detail.vue
  4. 10 3
      pages/pc/groupingList.vue
  5. 11 1
      pages/pc/index.vue
  6. 3 3
      pages/pc/list.vue

+ 16 - 7
components/pcNav/pcNav.vue

@@ -6,14 +6,14 @@
 					<image src="../../static/pcimg/nav_logo@2x.png" mode="" class="logoImg"></image>
 				</view>
 				<view class="navTitle">门店学院</view>
-				<view class="indexNav" @click="goIndex">首页</view>
+				<view class="indexNav" :class="{'indexActive':data=='index'}" @click="goIndex">首页</view>
 				<view class="allCategory">
-					<view class="allCategoryLine" v-for="(item,index) in allCategory" v-if="index<4">{{item.name}}</view>
+					<view class="allCategoryLine" :class="{'indexActive':itemName==item.name}" v-for="(item,index) in allCategory" v-if="index<4" @click="goItem(item)">{{item.name}}</view>
 				    <view class="allCategoryMore" v-if="allCategory.length>1">
 					 <span @click="moreBtn">更多</span> 
 					 <image @click="moreBtn" src="../../static/pcimg/icon_arrow_xia@2x.png" mode="widthFix" class="navmoreImg"></image>
 					 <view class="navMoret" v-show="navMoret">
-					 	<view class="navMoreTline" v-for="(item,index) in allCategory" v-if="index>3">{{item.name}}</view>
+					 	<view class="navMoreTline" v-for="(item,index) in allCategory" v-if="index>3" @click="goItem(item)">{{item.name}}</view>
 					 </view>
 					
 					</view>
@@ -31,13 +31,12 @@
 <script>
 	export default {
 		name: "searchBox",
-		props: {
-			
-		},
+		props: ['data','itemName'],
 		data() {
 			return {
 				allCategory:[],
 				navMoret:false,
+				
 			};
 		},
 		onLoad() {
@@ -52,6 +51,12 @@
 					url:'../../pages/pc/searchlist'
 				})
 			},
+			goItem(item){
+				console.log(item)
+				uni.navigateTo({
+					url:'list?code='+item.code+'&topName='+item.name+'&comment='+item.comment
+				})
+			},
 			goIndex(){
 				uni.navigateTo({
 					url:'../../pages/pc/index'
@@ -102,9 +107,13 @@
 	.indexNav{
 		line-height: 72px;
 		font-weight: 500;
-		color: #FF4F00;
+		color: #3C3C3C;
 		font-size: 20px;
 		padding-left: 54px;
+		cursor: pointer;
+	}
+	.indexActive{
+		color: #FF4F00 !important;
 	}
 	.allCategory{
 		display: flex;

+ 5 - 0
pages/index/index.vue

@@ -19,6 +19,11 @@
 			}
 		},
 		onLoad() {
+		  if(navigator.userAgent.indexOf('UCBrowser') > -1) {
+			uni.navigateTo({
+				url:'../mobile/index'
+			})
+		  }
           if (navigator.userAgent.indexOf('Mobile') === -1) {  
             console.log("PC")
 			uni.navigateTo({

+ 11 - 2
pages/pc/detail.vue

@@ -5,8 +5,8 @@
 		<view class="top">
 			<view class="topline" @click="goIndex">首页</view>
 			<view class="topjt">></view>
-			<view class="topline">{{topName}}</view>
-			<view class="topjt">></view>
+			<view class="topline" @click="goList()">{{topName}}</view>
+			<view class="topjt" v-if="twoName">></view>
 			<view class="topline">{{twoName}}</view>
 		</view>
 		<view class="htmlBox">
@@ -46,6 +46,8 @@
 				itemArr: [],
 				topName:'',
 				twoName:'',
+				comment:'',
+				parentCode:'',
 			}
 		},
 		onLoad(opt) {
@@ -53,12 +55,19 @@
 			this.id = opt.id
             this.topName=opt.topName;
 			this.twoName=opt.twoName;
+			this.comment=opt.comment;
+			this.parentCode=opt.parentCode
 			this.getDetailData()
 			// uni.setNavigationBarTitle({
 			// 	title: this.topName
 			// })
 		},
 		methods: {
+			goList(){
+				uni.navigateTo({
+					url:'list?code='+this.parentCode+'&topName='+this.topName+'&comment='+this.comment
+				})
+			},
              goIndex(){
 					uni.navigateTo({
 						url:'index'

+ 10 - 3
pages/pc/groupingList.vue

@@ -1,12 +1,12 @@
 <template>
 	<view class="content">
-		<pcNav></pcNav>
+		<pcNav :itemName="topName"></pcNav>
 		<view style="height: 72px;"></view>
 	    <view class="top">
 	    	<view class="topline" @click="goIndex">首页</view>
 	    	<view class="topjt">></view>
-	    	<view class="topline">{{topName}}</view>
-	    	<view class="topjt">></view>
+	    	<view class="topline" @click="goList">{{topName}}</view>
+	    	<view class="topjt" v-if="name">></view>
 	    	<view class="topline">{{name}}</view>
 	    </view>
 		
@@ -80,6 +80,7 @@
 				TotalSize:0,
 				pageSize:20,
 				topName:'',
+				comment:'',
 			}
 		},
 		onLoad(opt) {
@@ -87,6 +88,7 @@
 		   this.title=opt.title;
 		   this.parentCode=opt.parentCode;
 		   this.topName=opt.topName;
+		   this.comment=opt.comment;
 		   this.getgroupPageData()
 		},
 		methods: {
@@ -95,6 +97,11 @@
 					url:'index'
 				}) 
 			},
+			goList(){
+				uni.navigateTo({
+					url:'list?code='+this.parentCode+'&topName='+this.topName+'&comment='+this.comment
+				})
+			},
 			goDetail(wz){
 				// 1分类2文章
 				if (wz.Type == 1) {

+ 11 - 1
pages/pc/index.vue

@@ -51,7 +51,7 @@
 						<view class="mainlineMore" @click="mainMore(item)">查看更多></view>
 					</view>
 					<view class="mainwzbox" >
-						<view class="mainwzline" v-for="(wz,wzindex) in item.children" v-if="wzindex<4" :class="{'mainwzlineR':wzindex!=3}">
+						<view class="mainwzline" v-for="(wz,wzindex) in item.children" @click="goDetail2(wz,item)" v-if="wzindex<4" :class="{'mainwzlineR':wzindex!=3}">
 							<view class="mainwzImgBox">
 							  <img :src="wz.logoImg" alt="" class="mainwzImg">	
 							</view>
@@ -107,6 +107,16 @@
 		methods: {
 			goDetail(item){
 				console.log(item)
+				uni.navigateTo({
+					url:'detail?id='+item.id+'&topName='+item.categoryName+"&comment="+item.comment+'&parentCode='+item.code
+				})
+			},
+			goDetail2(wz,item){
+				/* console.log(item)
+				console.log(wz) */
+				 uni.navigateTo({
+					url:'detail?id='+wz.id+'&topName='+item.name+"&comment="+item.comment+'&parentCode='+item.code
+				}) 
 			},
 			gotoTop(){
 				uni.pageScrollTo({ 

+ 3 - 3
pages/pc/list.vue

@@ -1,6 +1,6 @@
 <template>
 	<view class="content">
-		<pcNav></pcNav>
+		<pcNav :itemName="topName"></pcNav>
 		<view style="height: 72px;"></view>
 	
 		
@@ -97,11 +97,11 @@
 				// 1分类2文章
 				if (wz.Type == 1) {
 					uni.navigateTo({
-						url:'groupingList?parentCode='+wz.Code+'&name='+wz.Name+'&title='+wz.Title+'&topName='+this.topName
+						url:'groupingList?parentCode='+wz.Code+'&name='+wz.Name+'&title='+wz.Title+'&topName='+this.topName+"&comment="+this.comment
 					})
 				}else{
 					uni.navigateTo({
-						url:'detail?id='+wz.ID+'&topName='+this.topName+'&twoName='+this.dynamicCol[this.tabIndex].name
+						url:'detail?id='+wz.ID+'&topName='+this.topName+'&twoName='+this.dynamicCol[this.tabIndex].name+"&comment="+this.comment+'&parentCode='+wz.Code
 					})
 				}
 				//console.log(wz)