Browse Source

添加Gitignore

gcz 4 years ago
parent
commit
1ca2c7c027

+ 14 - 0
.gitignore

@@ -0,0 +1,14 @@
+.DS_Store
+node_modules/
+unpackage/dist/
+npm-debug.log*
+yarn-debug.log*
+yarn-error.log*
+
+# Editor directories and files
+.idea
+.vscode
+*.suo
+*.ntvs*
+*.njsproj
+*.sln

+ 1 - 0
config/config.js

@@ -3,6 +3,7 @@ const config = {
 	apiBaseurl:'http://forest.hw.hongweisoft.com/data/forest-portal',//测试
 	// apiBaseurl:'http://172.16.90.64:9098/forest-portal',//测试
 	// apiBaseurl:'http://172.16.90.50:9098/forest-portal',//邱波
+	// apiBaseurl:'http://172.16.90.3:9098/forest-portal',//邱波
 	//本地图片
 	// imgUrl:'http://'+window.location.host,
 	// 图片占位

+ 1 - 1
manifest.json

@@ -77,7 +77,7 @@
     },
     "h5" : {
         "router" : {
-            "mode" : "hash",
+            "mode" : "history",
             "base" : "./"
         },
         "devServer" : {

+ 12 - 4
pages/index/index.vue

@@ -140,6 +140,7 @@
 				//category all
 				categoryall:true,
 				notall:false,
+				thispage:'',
 				
 			}
 		},
@@ -169,7 +170,7 @@
 					console.log('该URL中不含参数');
 				}
 			};
-			
+			this.thispage = `/pages/index/index`;
 			let locationArr = getUrlParams(locationLocaturl);
 			if(!locationArr){
 				window.location.replace(this.config.loginUrl);
@@ -195,6 +196,12 @@
 					userInfo.tokenhead = this.params.tokenhead;
 					this.setLogin(userInfo);
 				}).catch(err => {
+					if(err.data.message =='暂未登录或token已经过期'){
+						let loginurl = `${this.config.apiBaseurl}/wechat/h5/authorize?returnUrl=${this.thispage}`
+						console.log('loginurl',loginurl);
+						window.location.replace(loginurl);
+						return
+					}
 					console.log(err)
 				});
 			};
@@ -246,7 +253,7 @@
 			/*上拉加载的回调*/
 			upCallback(page) {
 				let pageNum = page.num; // 页码, 默认从1开始
-				let pageSize = page.size; // 页长, 默认每页10条
+				let pageSize = page.size; // 页长, 默认每页10条				
 				this.params = Object.assign(this.params,{pageNum:pageNum,pageSize:pageSize});
 				this.$api.http.get(this.config.apiBaseurl+'/product/search',{params: this.params}).then(data => {
 					if(data.data.code=='1001'){
@@ -275,9 +282,10 @@
 					console.log('this.mescrollList',JSON.parse(JSON.stringify(this.mescrollList)));
 					// 请求成功,隐藏加载状态
 					//方法一(推荐): 后台接口有返回列表的总页数 totalPage
-					this.mescroll.endByPage(curPageLen, totalPage); 
+					// this.mescroll.endByPage(curPageLen, totalPage); 
 					//方法二(推荐): 后台接口有返回列表的总数据量 totalSize
-					// this.mescroll.endBySize(curPageLen, totalSize); 
+					this.mescroll.endBySize(curPageLen, totalSize); 
+					console.log('pageSize',pageSize,'curPageLen',curPageLen,'totalSize',totalSize);
 			
 					// setTimeout(()=>{
 					// 	this.mescroll.endSuccess(curPageLen)

+ 8 - 6
pages/product/product.vue

@@ -4,7 +4,7 @@
 			<swiper class="swiper" :indicator-dots="swiper.indicatorDots" :autoplay="swiper.autoplay" :interval="swiper.interval" :duration="swiper.duration">
 				<!-- <swiper-item v-for="(item,index) in albumPics" :key="index"> -->
 				<swiper-item>
-					<view class="adv-item"><image :src="$getimg+product.pic|miniImg(75)" class="pic" mode="aspectFit"></image></view>
+					<view class="adv-item"><image :src="$getimg+product.pic|miniImg(75)+'/thumbnail/750x'" class="pic" mode="aspectFit"></image></view>
 				</swiper-item>
 			</swiper>
 		</view>
@@ -36,7 +36,7 @@
 			</view>
 			<view class="placeoforigin-info" @click="gocompany(product.umsCompanyInfoId)">
 				<view class="placeoforigin-info-img-wrap" >
-					<image class="placeoforigin-info-img" :src="firstimg||'/static/img/inbuild.png'|miniImg(75)" mode="widthFix"></image>
+					<image class="placeoforigin-info-img" :src="firstimg||'/static/img/inbuild.png'|miniImg(75)+'/thumbnail/240x'" mode="aspectFit"></image>
 				</view>
 				<view class="placeoforigin-info-text">
 					<view class="placeoforigin-info-text-til">{{companyinfo.compName}}</view>
@@ -78,7 +78,7 @@
 				<view class="page-article-text">
 					{{origin.summary}}
 				</view>
-				<image v-for="(item,index) in albumPics" :key="index" :src="$getimg+item|miniImg(75)" class="full-img" mode="widthFix"></image>
+				<image v-for="(item,index) in albumPics" :key="index" :src="$getimg+item|miniImg(75)+'/thumbnail/750x'" class="full-img" mode="widthFix"></image>
 			</view>			
 		</view>
 		<!-- 产品介绍 end -->
@@ -148,7 +148,7 @@
 			});
 			console.log('option',option);
 			this.params.productid = option.id;
-			this.thispage = `/pages/product/product?id=${this.params.productid}`;
+			this.thispage = `/#/pages/product/product?id=${this.params.productid}`;
 			//获取产品
 			//,{params:this.params}
 			this.$api.http.get(this.config.apiBaseurl+'/product/detail/'+this.params.productid).then(res => {
@@ -165,7 +165,8 @@
 				this.files = res.data.data.companyInfo.files||'';
 				this.firstimg = this.files[0].fileUrl||'';
 				// console.log('this.albumPics',this.albumPics,'type',typeof this.albumPics,'this.firstimg',this.firstimg);
-				this.phoneNumber = this.companyinfo.compConNum;
+				// this.phoneNumber = this.companyinfo.compConNum;//动态电话
+				this.phoneNumber = '13885026400';
 				// console.log('this.brand',JSON.parse(JSON.stringify(this.brand)));
 				// console.log('this.companyinfo',JSON.parse(JSON.stringify(this.companyinfo)));
 				// console.log('this.origin',JSON.parse(JSON.stringify(this.origin)));
@@ -179,7 +180,7 @@
 		methods: {
 			//有意向
 			focuse(productid){
-				
+				console.log('this.thispage',this.thispage);
 				let thetoken = this.params.tokenhead + this.params.token;
 				this.$api.http.put(this.config.apiBaseurl+'/pre/add',{productId:productid},{header: {Authorization:thetoken}}).then(res => {
 					console.log(res);
@@ -193,6 +194,7 @@
 				}).catch(err => {
 					if(err.data.message =='暂未登录或token已经过期'){
 						let loginurl = `${this.config.apiBaseurl}/wechat/h5/authorize?returnUrl=${this.thispage}`
+						console.log('loginurl',loginurl);
 						window.location.replace(loginurl);
 						return
 					}

+ 1 - 1
pages/publish/publish.vue

@@ -43,7 +43,7 @@
 				<view class="form-item arrow" @click="openplaceoforigin">
 					<view class="form-item-til">生产地</view>
 					<view class="form-item-con">
-						<input type="text" placeholder="" v-model="params.placeoforigin" value="" />
+						<input type="text" disabled="disabled" placeholder="" v-model="params.placeoforigin" value="" />
 					</view>
 				</view>
 				<view class="form-item arrow" @click="openspecifications">

+ 2 - 2
pages/supplier/supplierdetail/supplierdetail.css

@@ -19,7 +19,7 @@
 .supplier-info-til{font-size: 34rpx;font-weight: 500;color: #333;line-height: 48rpx;margin-bottom: 8rpx;}
 .supplier-info-item{margin-bottom: 8rpx;color: #999;}
 .supplier-info-item .text + .text{margin-left: 50rpx;}
-.supplier-info-certificate{display: flex;flex-wrap: wrap;margin-top: 24rpx;}
+.supplier-info-certificate{display: flex;flex-wrap: wrap;margin-top: 24rpx;justify-content: center;}
 .supplier-info-certificate .image{width: 50%;flex: 1;}
 .supplier-info-certificate .image + .image{margin-left: 20rpx;}
 
@@ -27,7 +27,7 @@
 .placeoforigin-banner{overflow: hidden;border-top-left-radius: 24rpx;border-top-right-radius: 24rpx;}
 .placeoforigin-banner-img{width: 100%;height: 100%;}
 .placeoforigin-text-til{font-size: 34rpx;font-weight: 500;color: #333;line-height: 48rpx;}
-.placeoforigin-text{font-size: 26rpx;font-weight: 400;color: #999;line-height: 37rpx;}
+.placeoforigin-text{font-size: 26rpx;font-weight: 400;color: #999;line-height: 37rpx;white-space: normal;}
 .placeoforigin-text-item .text + .text{margin-left: 40rpx;}
 
 .placeoforigin-scroll-view{flex: 1;overflow: hidden;white-space: nowrap;}

+ 3 - 3
pages/supplier/supplierdetail/supplierdetail.vue

@@ -3,7 +3,7 @@
 		<view class="supplierdetail">
 			
 			<view class="full-img-wrap">
-				<image class="full-img" v-if="firstcompanyimg" :src="firstcompanyimg|miniImg(75)" mode="widthFix"></image>
+				<image class="full-img" v-if="firstcompanyimg" :src="firstcompanyimg|miniImg(75)+'/thumbnail/750x'" mode="widthFix"></image>
 			</view>	
 			<view class="base-info">
 				<view class="base-info-til">{{companyinfo.compName}}</view>
@@ -58,7 +58,7 @@
 						简介:{{companyinfo.compSum}}
 					</view>
 					<view class="supplier-info-certificate">
-						<image v-for="(img,index) in companyimg" :key="index" :src="img.fileUrl|miniImg(75)" mode="widthFix"></image>
+						<image v-for="(img,index) in companyimg" :key="index" :src="img.fileUrl|miniImg(75)+'/thumbnail/750x'" mode="widthFix"></image>
 						<!-- <image class="image" src="../../../static/img/banner-supplierdetail.png" mode="widthFix"></image>
 						<image class="image" src="../../../static/img/banner-supplierdetail.png" mode="widthFix"></image> -->
 					</view>
@@ -70,7 +70,7 @@
 					<view class="block-til-left">生产地</view>
 				</view>
 				<scroll-view scroll-x="true" class="scroll-X placeoforigin-scroll-view">
-					<view class="placeoforigin-wrap"  v-for="(item,index) in origines" :key="index">
+					<view class="placeoforigin-wrap" :style="origines.length==1?{width:'auto',display:'block'}:''" v-for="(item,index) in origines" :key="index">
 						<view class="placeoforigin-banner">
 							<image class="placeoforigin-banner-img" :src="item.imgUrl||'/static/img/placeoforigin-banner.png'|miniImg(75)" mode="widthFix"></image>
 						</view>

+ 8 - 0
pages/usercenter/usercenter.vue

@@ -76,12 +76,14 @@
 				pre:[],
 				user:[],
 				wxuser:[],
+				thispage:'',
 				
 			}
 		},
 		onShow() {		
 		},
 		onLoad() {
+			this.thispage = `/pages/usercenter/usercenter`;
 			let serf = this;
 			let locationLocaturl = window.location.search;
 			function getUrlParams(url) {
@@ -135,6 +137,12 @@
 					userInfo.tokenhead = this.params.tokenhead;
 					this.setLogin(userInfo);
 				}).catch(err => {
+					if(err.data.message =='暂未登录或token已经过期'){
+						let loginurl = `${this.config.apiBaseurl}/wechat/h5/authorize?returnUrl=${this.thispage}`
+						console.log('loginurl',loginurl);
+						window.location.replace(loginurl);
+						return
+					}
 					console.log(err)
 				});
 			};

File diff suppressed because it is too large
+ 1 - 1
unpackage/dist/build/h5/index.html


File diff suppressed because it is too large
+ 0 - 1
unpackage/dist/build/h5/static/js/index.4a22e09a.js


File diff suppressed because it is too large
+ 0 - 1
unpackage/dist/build/h5/static/js/pages-index-index.9588d852.js


File diff suppressed because it is too large
+ 0 - 1
unpackage/dist/build/h5/static/js/pages-product-product.b990ef4a.js


File diff suppressed because it is too large
+ 0 - 1
unpackage/dist/build/h5/static/js/pages-publish-publish.e7622309.js


File diff suppressed because it is too large
+ 0 - 1
unpackage/dist/build/h5/static/js/pages-supplier-supplierdetail-supplierdetail.1452a4e3.js


File diff suppressed because it is too large
+ 0 - 1
unpackage/dist/build/h5/static/js/pages-usercenter-usercenter.468bcde6.js