twt 3 년 전
부모
커밋
aaaa3f3a5d
8개의 변경된 파일398개의 추가작업 그리고 11개의 파일을 삭제
  1. 2 2
      common/request.js
  2. 12 2
      components/pcNav/pcNav.vue
  3. 6 0
      pages.json
  4. 36 3
      pages/pc/groupingList.vue
  5. 6 3
      pages/pc/index.vue
  6. 15 1
      pages/pc/list.vue
  7. 321 0
      pages/pc/searchlist.vue
  8. BIN
      static/pcimg/icon_sousuo@2x.png

+ 2 - 2
common/request.js

@@ -1,6 +1,6 @@
  //测试地址
- const baseURL = 'http://58.56.15.138:20189/' 
- const burl2='http://58.56.15.138:20189/' 
+ const baseURL = 'http://api.dms.66km.com.cn/' 
+ const burl2='http://api.dms.66km.com.cn/' 
 
 
 

+ 12 - 2
components/pcNav/pcNav.vue

@@ -6,7 +6,7 @@
 					<image src="../../static/pcimg/nav_logo@2x.png" mode="" class="logoImg"></image>
 				</view>
 				<view class="navTitle">门店学院</view>
-				<view class="indexNav">首页</view>
+				<view class="indexNav" @click="goIndex">首页</view>
 				<view class="allCategory">
 					<view class="allCategoryLine" v-for="(item,index) in allCategory" v-if="index<4">{{item.name}}</view>
 				    <view class="allCategoryMore" v-if="allCategory.length>1">
@@ -19,7 +19,7 @@
 					</view>
 					
 				</view>
-				<view class="navSs">
+				<view class="navSs" @click="gosearchlist">
 					<image src="../../static/pcimg/icon_search@2x.png" mode="widthFix" class="navSsimg"></image>
 				</view>
 			</view>
@@ -47,6 +47,16 @@
 			this.getallCategory();
 		},
 		methods:{
+			gosearchlist(){
+				uni.navigateTo({
+					url:'../../pages/pc/searchlist'
+				})
+			},
+			goIndex(){
+				uni.navigateTo({
+					url:'../../pages/pc/index'
+				})
+			},
 			getallCategory(){
 				this.$http('/trainingOpenApi/allCategory', {}, 'GET').then(res => {
 					this.allCategory = res.data

+ 6 - 0
pages.json

@@ -77,6 +77,12 @@
 			"style": {
 				"navigationStyle": "custom"
 			}
+		},
+		{
+			"path": "pages/pc/searchlist",
+			"style": {
+				"navigationStyle": "custom"
+			}
 		}
     ],
 	"globalStyle": {

+ 36 - 3
pages/pc/groupingList.vue

@@ -2,7 +2,13 @@
 	<view class="content">
 		<pcNav></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">{{name}}</view>
+	    </view>
 		
 		<view class="gotop" @click="gotoTop">
 			<image src="../../static/pcimg/btn_top@2x.png" mode="" class="gotopImg"></image>
@@ -73,16 +79,22 @@
 				tabIndex:0,
 				TotalSize:0,
 				pageSize:20,
+				topName:'',
 			}
 		},
 		onLoad(opt) {
            this.name=opt.name;
 		   this.title=opt.title;
 		   this.parentCode=opt.parentCode;
-		  
+		   this.topName=opt.topName;
 		   this.getgroupPageData()
 		},
 		methods: {
+			goIndex(){
+				uni.navigateTo({
+					url:'index'
+				}) 
+			},
 			goDetail(wz){
 				// 1分类2文章
 				if (wz.Type == 1) {
@@ -138,7 +150,27 @@
 </script>
 
 <style scoped>
-	
+	 .top{
+	 	width: 1200px;
+	 	margin: 0 auto;
+	 	display: flex;
+	 	padding: 30px 0;
+	 	font-size: 14px;
+	 }
+	 .htmlBox{
+	 	width: 720px;
+	 	margin: 0 auto;
+	 }
+	 .topline{
+	 	padding-right: 10px;
+	 	cursor: pointer;
+	 	color: #3C3C3C;
+	 	
+	 }
+	 .topjt{
+	 	color: #AAAAAA;
+	 	padding-right: 10px;
+	 }
 	*{
 		padding: 0;
 		margin: 0;
@@ -254,6 +286,7 @@
 	}
 	.wzLineRight{
 		padding-left: 16px;
+		width: 950px;
 	}
 	.wzTitle{
 		font-size: 16px;

+ 6 - 3
pages/pc/index.vue

@@ -1,6 +1,6 @@
 <template>
 	<view class="content">
-		<pcNav></pcNav>
+		<pcNav :data="'index'"></pcNav>
 		<view style="height: 72px;"></view>
 		<view class="swiperBox">
 			<view class="swiperCont">
@@ -11,7 +11,7 @@
 				 <swiper class="swiper"  :autoplay="false"   :circular="true" :current="swpIndex">
 					<swiper-item v-for="(item,index) in recommendList" v-if="(index+1)%2!=0">
 						<view class="swpCont">
-							<view class="swiper-item" >
+							<view class="swiper-item" @click="goDetail(item)">
 								<view class="swpimgBox swpBr">
 									<image :src="item.logoImg" mode="" class="swpimg"></image>
 								</view>
@@ -21,7 +21,7 @@
 								</view>
 								
 							</view>
-							<view class="swiper-item" v-if="(index+1)<recommendList.length">
+							<view class="swiper-item" v-if="(index+1)<recommendList.length" @click="goDetail(item)">
 								<view class="swpimgBox swpBr">
 								   <image :src="recommendList[index+1].logoImg" mode="" class="swpimg"></image>
 								</view>
@@ -105,6 +105,9 @@
 		   this.getindexData()
 		},
 		methods: {
+			goDetail(item){
+				console.log(item)
+			},
 			gotoTop(){
 				uni.pageScrollTo({ 
 				      scrollTop: 0, duration: 300 

+ 15 - 1
pages/pc/list.vue

@@ -97,7 +97,7 @@
 				// 1分类2文章
 				if (wz.Type == 1) {
 					uni.navigateTo({
-						url:'groupingList?parentCode='+wz.Code+'&name='+wz.Name+'&title='+wz.Title
+						url:'groupingList?parentCode='+wz.Code+'&name='+wz.Name+'&title='+wz.Title+'&topName='+this.topName
 					})
 				}else{
 					uni.navigateTo({
@@ -267,6 +267,7 @@
 	}
 	.wzLineRight{
 		padding-left: 16px;
+		width: 950px;
 	}
 	.wzTitle{
 		font-size: 16px;
@@ -287,4 +288,17 @@
 		cursor: pointer;
 		padding-bottom: 20px;
 	}
+	.nodataImg{
+		width: 300px;
+		height: 203px;
+	}
+	.nodata{
+		text-align: center;
+	}
+	.nodataTitle{
+		font-size: 16px;
+		padding-top: 16px;
+		font-weight: 400;
+		color: #999999;
+	}
 </style>

+ 321 - 0
pages/pc/searchlist.vue

@@ -0,0 +1,321 @@
+<template>
+	<view class="content">
+		<pcNav></pcNav>
+		<view style="height: 72px;"></view>
+	
+		
+		<view class="gotop" @click="gotoTop">
+			<image src="../../static/pcimg/btn_top@2x.png" mode="" class="gotopImg"></image>
+		</view>
+		
+		<view class="main">
+			<view class="searchTitle">搜索</view>
+			<view class="searchBox">
+				<view class="searchInputBox">
+					<input class="searchInput" type="text" v-model="title" placeholder="请输入您想搜索到内容~" placeholder-style="color:#CCCCCC" @confirm="search"/>
+				</view>
+				<image src="../../static/pcimg/icon_sousuo@2x.png" mode="" class="searchBtn" @click="search"></image>
+				
+			</view>
+			
+			<view class="cont2">
+				
+				<view class="contL">
+					<view class="wxLine" v-for="(wz,wzindex) in list" @click="goDetail(wz)">
+						<view class="wzLineLeft">
+							<image :src="wz.LogoImg" class="wzLeftIMg"></image>
+						</view>
+						<view class="wzLineRight">
+							<view class="wzTitle">{{wz.Name}}</view>
+							<view class="wzComment">{{wz.Comment}}</view>
+						</view>
+					</view>
+				</view>
+				<view class="nodata" v-show="list.length==0&&sstype">
+					<image src="../../static/pcimg/pic_empty_search@2x.png" mode="" class="nodataImg"></image>
+					<view class="nodataTitle">暂无数据</view>
+				</view>
+			</view>
+			
+		</view>
+		
+		<!-- -->
+		<view class="pageView" v-show="TotalSize">
+			<page-pagination :pageSize="pageSize" :total="TotalSize" :numAround="true" @change="pageChange"></page-pagination>
+		</view>
+		<!-- <view>
+			<a class="table-btn" href="http://phone.66km.cn:8088/marketing/training/940C4BF0A2E04542A1A1AD244EAFB6E2.xlsx" target='_blank'>下载入口</a>
+		</view> -->
+		
+		
+		
+	</view>
+</template>
+
+<script>
+	import pcNav from '../../components/pcNav/pcNav.vue'
+	export default {
+		components: {
+			pcNav,
+		},
+		data() {
+			return {
+				list:[],
+				title:'',
+				page:1,
+				sstype:false,
+				TotalSize:0,
+				pageSize:20,
+			}
+		},
+		onLoad(opt) {
+          
+		  // this.getcategoryPageData()
+		},
+		methods: {
+			search(){
+				var params={
+					title:this.title,
+					limit:this.pageSize,
+					page:this.page,
+				}
+				uni.showLoading({
+					title: '加载中'
+				})
+				this.$http('/trainingOpenApi/searchPageData', params, 'GET').then(res => {
+					uni.hideLoading();
+					this.list=res.data.Items;
+					this.TotalSize=res.data.TotalSize;
+					
+					
+				})
+			},
+			goDetail(wz){
+				// 1分类2文章
+				if (wz.Type == 1) {
+					uni.navigateTo({
+						url:'groupingList?parentCode='+wz.Code+'&name='+wz.Name+'&title='+wz.Title+'&topName='
+					})
+				}else{
+					uni.navigateTo({
+						url:'detail?id='+wz.ID+'&topName=&twoName='
+					})
+				}
+				//console.log(wz)
+			},
+			gotoTop(){
+				uni.pageScrollTo({ 
+				   scrollTop: 0, duration: 300 
+				}); 
+			},
+			tabBtn(index,item){
+				this.tabIndex=index;
+				//console.log(item)
+				this.parentCode=item.code;
+				this.getcategoryPageData()
+			},
+			pageChange(e){
+				console.log(e)
+				this.page=e;
+				this.getcategoryPageData()
+				
+			},
+			getcategoryPageData(){
+				var params={
+					parentCode:this.parentCode,
+					topCode:this.topCode,
+					limit:this.pageSize,
+					page:this.page,
+				}
+				uni.showLoading({
+					title: '加载中'
+				})
+				this.$http('/trainingOpenApi/categoryPageData', params, 'GET').then(res => {
+					uni.hideLoading();
+					this.list=res.data.Items;
+					this.TotalSize=res.data.TotalSize;
+					var arr=[
+						{
+							'name':'全部','code':'',
+						}	
+					]
+					this.dynamicCol=arr.concat(res.data.dynamicCol);
+					
+				})
+			}
+		}
+	}
+</script>
+
+<style scoped>
+	.searchTitle{
+		font-size: 24px;
+		font-weight: 500;
+		color: #3C3C3C;
+		padding-bottom: 30px;
+	}
+	.searchInput{
+		width: 1060px;
+		padding-left: 20px;
+		line-height: 50px;
+		border: 2px solid #EEEEEE;
+		height: 50px;
+	}
+	.searchBtn{
+		width: 120px;
+		height: 54px;
+	}
+	.searchBox{
+		display: flex;
+	}
+	*{
+		padding: 0;
+		margin: 0;
+	}
+	.gotopImg{
+		width: 60px;
+		height: 60px;
+	}
+	.gotop{
+		position: fixed;
+		right:15vh ;
+		bottom: 100px;
+		cursor: pointer;
+	}
+	.topName{
+		text-align: center;
+		font-size: 24px;
+		font-weight: 500;
+		color: #3C3C3C;
+		line-height: 33px;
+		padding-top: 30px;
+	}
+	.comment{
+		text-align: center;
+		font-size: 14px;
+		font-weight: 400;
+		color: #999999;
+		line-height: 20px;
+		width: 500px;
+		padding-top: 10px;
+		margin: 0 auto;
+	}
+	.main{
+		width: 1200px;
+		margin: 0 auto;
+		padding-top: 30px;
+	}
+	.dynamicColLeft{
+		display: flex;
+	}
+	.dynamicColLIne{
+		padding-right: 44px;
+		font-size: 16px;
+		color: #3C3C3C;
+		cursor: pointer;
+	}
+	.qhImg{
+		width: 28px;
+		height: 28px;
+		margin-left: 8px;
+		cursor: pointer;
+	}
+	.dynamicCol{
+		display: flex;
+		justify-content: space-between;
+	}
+	.activeTab{
+		color: #FF4F00;
+	}
+	.mainwzImg{
+		width: 276px;
+		height: 184px;
+	}
+	.mainwzImgBox{
+		border-radius: 15px;
+	    overflow: hidden;
+	}
+	.contf{
+		display: flex;
+		flex-wrap: wrap;
+	}
+	.mainwzline{
+		width: 276px;
+		height: 260px;
+		background: #FFFFFF;
+		margin-right: 32px;	
+		padding-top: 33px;
+		cursor: pointer;
+	}
+	.mainwzlineR{
+	  margin-right: 0px;	
+	}
+	.wztitle{
+		width: 250px;
+		font-size: 16px;
+		color: #333333;
+		line-height: 22px;
+		height: 44px;
+		text-overflow: -o-ellipsis-lastline;
+		 overflow: hidden;
+		 text-overflow: ellipsis;
+		 display: -webkit-box;
+		 -webkit-line-clamp: 2;
+		 line-clamp: 2;
+		 -webkit-box-orient: vertical;
+		 padding-top: 16px;
+		 padding:0 13px ;
+	}
+	.wzLeftIMg{
+		width: 200px;
+		height: 132px;
+	}
+	.wxLine{
+		display: flex;
+		padding-top: 30px;
+		cursor: pointer;
+	}
+	.wzLineLeft{
+		border-radius: 10px;
+		overflow: hidden;
+		width: 200px;
+		height: 132px;
+	}
+	.wzLineRight{
+		padding-left: 16px;
+		width: 950px;
+	}
+	.wzTitle{
+		font-size: 16px;
+		font-weight: 500;
+		color: #3C3C3C;
+	}
+	.wzComment{
+		font-size: 12px;
+		font-family: PingFangSC-Regular, PingFang SC;
+		font-weight: 400;
+		color: #999999;
+		line-height: 17px;
+		padding-top: 10px;
+		width: 1000px;
+	}
+	.pageView{
+		margin-top: 20px;
+		cursor: pointer;
+		padding-bottom: 20px;
+	}
+	.nodataImg{
+		width: 300px;
+		height: 203px;
+	}
+	.nodata{
+		text-align: center;
+	}
+	.nodataTitle{
+		font-size: 16px;
+		padding-top: 16px;
+		font-weight: 400;
+		color: #999999;
+	}
+	
+</style>

BIN
static/pcimg/icon_sousuo@2x.png