Browse Source

auto commit

gcz 4 years ago
parent
commit
e78f136a1c

+ 1 - 1
common/css/common.css

@@ -48,7 +48,7 @@
 .adv-item{height: 100%;}
 .swiper-wrap .pic{width: 100%;height: 100%;}
 
-
+.full-search{padding-left: 16rpx;margin-bottom: 24rpx;}
 
 
 

+ 96 - 0
components/uni-icons/icons.js

@@ -0,0 +1,96 @@
+export default {
+	'contact': '\ue100',
+	'person': '\ue101',
+	'personadd': '\ue102',
+	'contact-filled': '\ue130',
+	'person-filled': '\ue131',
+	'personadd-filled': '\ue132',
+	'phone': '\ue200',
+	'email': '\ue201',
+	'chatbubble': '\ue202',
+	'chatboxes': '\ue203',
+	'phone-filled': '\ue230',
+	'email-filled': '\ue231',
+	'chatbubble-filled': '\ue232',
+	'chatboxes-filled': '\ue233',
+	'weibo': '\ue260',
+	'weixin': '\ue261',
+	'pengyouquan': '\ue262',
+	'chat': '\ue263',
+	'qq': '\ue264',
+	'videocam': '\ue300',
+	'camera': '\ue301',
+	'mic': '\ue302',
+	'location': '\ue303',
+	'mic-filled': '\ue332',
+	'speech': '\ue332',
+	'location-filled': '\ue333',
+	'micoff': '\ue360',
+	'image': '\ue363',
+	'map': '\ue364',
+	'compose': '\ue400',
+	'trash': '\ue401',
+	'upload': '\ue402',
+	'download': '\ue403',
+	'close': '\ue404',
+	'redo': '\ue405',
+	'undo': '\ue406',
+	'refresh': '\ue407',
+	'star': '\ue408',
+	'plus': '\ue409',
+	'minus': '\ue410',
+	'circle': '\ue411',
+	'checkbox': '\ue411',
+	'close-filled': '\ue434',
+	'clear': '\ue434',
+	'refresh-filled': '\ue437',
+	'star-filled': '\ue438',
+	'plus-filled': '\ue439',
+	'minus-filled': '\ue440',
+	'circle-filled': '\ue441',
+	'checkbox-filled': '\ue442',
+	'closeempty': '\ue460',
+	'refreshempty': '\ue461',
+	'reload': '\ue462',
+	'starhalf': '\ue463',
+	'spinner': '\ue464',
+	'spinner-cycle': '\ue465',
+	'search': '\ue466',
+	'plusempty': '\ue468',
+	'forward': '\ue470',
+	'back': '\ue471',
+	'left-nav': '\ue471',
+	'checkmarkempty': '\ue472',
+	'home': '\ue500',
+	'navigate': '\ue501',
+	'gear': '\ue502',
+	'paperplane': '\ue503',
+	'info': '\ue504',
+	'help': '\ue505',
+	'locked': '\ue506',
+	'more': '\ue507',
+	'flag': '\ue508',
+	'home-filled': '\ue530',
+	'gear-filled': '\ue532',
+	'info-filled': '\ue534',
+	'help-filled': '\ue535',
+	'more-filled': '\ue537',
+	'settings': '\ue560',
+	'list': '\ue562',
+	'bars': '\ue563',
+	'loop': '\ue565',
+	'paperclip': '\ue567',
+	'eye': '\ue568',
+	'arrowup': '\ue580',
+	'arrowdown': '\ue581',
+	'arrowleft': '\ue582',
+	'arrowright': '\ue583',
+	'arrowthinup': '\ue584',
+	'arrowthindown': '\ue585',
+	'arrowthinleft': '\ue586',
+	'arrowthinright': '\ue587',
+	'pulldown': '\ue588',
+	'closefill': '\ue589',
+	'sound': '\ue590',
+	'scan': '\ue612'
+}

File diff suppressed because it is too large
+ 57 - 0
components/uni-icons/uni-icons.vue


+ 183 - 0
components/uni-search-bar/uni-search-bar.vue

@@ -0,0 +1,183 @@
+<template>
+	<view class="uni-searchbar">
+		<view :style="{borderRadius:radius+'px',backgroundColor: bgColor}" class="uni-searchbar__box" @click="searchClick">
+			<!-- #ifdef MP-ALIPAY -->
+			<view class="uni-searchbar__box-icon-search">
+				<uni-icons color="#999999" size="18" type="search" />
+			</view>
+			<!-- #endif -->
+			<!-- #ifndef MP-ALIPAY -->
+			<uni-icons color="#999999" class="uni-searchbar__box-icon-search" size="18" type="search" />
+			<!-- #endif -->
+			<input v-if="show" :focus="showSync" :placeholder="placeholder" :maxlength="maxlength" @confirm="confirm" class="uni-searchbar__box-search-input"
+			 confirm-type="search" type="text" v-model="searchVal" />
+			<text v-else class="uni-searchbar__text-placeholder">{{ placeholder }}</text>
+			<view v-if="show && (clearButton==='always'||clearButton==='auto'&&searchVal!=='')" class="uni-searchbar__box-icon-clear" @click="clear">
+				<uni-icons color="#999999" class="" size="24" type="clear" />
+			</view>
+		</view>
+		<text @click="cancel" class="uni-searchbar__cancel" v-if="cancelButton ==='always' || show && cancelButton ==='auto'">{{cancelText}}</text>
+	</view>
+</template>
+
+<script>
+	import uniIcons from "../uni-icons/uni-icons.vue";
+	export default {
+		name: "UniSearchBar",
+		components: {
+			uniIcons
+		},
+		props: {
+			placeholder: {
+				type: String,
+				default: "请输入搜索内容"
+			},
+			radius: {
+				type: [Number, String],
+				default: 5
+			},
+			clearButton: {
+				type: String,
+				default: "auto"
+			},
+			cancelButton: {
+				type: String,
+				default: "auto"
+			},
+			cancelText: {
+				type: String,
+				default: '取消'
+			},
+			bgColor: {
+				type: String,
+				default: "#F8F8F8"
+			},
+			maxlength: {
+				type: [Number, String],
+				default: 100
+			}
+		},
+		data() {
+			return {
+				show: false,
+				showSync: false,
+				searchVal: ""
+			}
+		},
+		watch: {
+			searchVal() {
+				this.$emit("input", {
+					value: this.searchVal
+				})
+			}
+		},
+		methods: {
+			searchClick() {
+				if (this.show) {
+					return
+				}
+				this.searchVal = ""
+				this.show = true;
+				this.$nextTick(() => {
+					this.showSync = true;
+				})
+			},
+			clear() {
+				this.searchVal = ""
+			},
+			cancel() {
+				this.$emit("cancel", {
+					value: this.searchVal
+				});
+				this.searchVal = ""
+				this.show = false
+				this.showSync = false
+				// #ifndef APP-PLUS
+				uni.hideKeyboard()
+				// #endif
+				// #ifdef APP-PLUS
+				plus.key.hideSoftKeybord()
+				// #endif
+			},
+			confirm() {
+				// #ifndef APP-PLUS
+				uni.hideKeyboard();
+				// #endif
+				// #ifdef APP-PLUS
+				plus.key.hideSoftKeybord()
+				// #endif
+				this.$emit("confirm", {
+					value: this.searchVal
+				})
+			}
+		}
+	};
+</script>
+
+<style lang="scss" scoped>
+	$uni-searchbar-height: 36px;
+
+	.uni-searchbar {
+		/* #ifndef APP-NVUE */
+		display: flex;
+		/* #endif */
+		flex-direction: row;
+		position: relative;
+		padding: $uni-spacing-col-base;
+		background-color: $uni-bg-color;
+	}
+
+	.uni-searchbar__box {
+		/* #ifndef APP-NVUE */
+		display: flex;
+		box-sizing: border-box;
+		/* #endif */
+		overflow: hidden;
+		position: relative;
+		flex: 1;
+		justify-content: center;
+		flex-direction: row;
+		align-items: center;
+		height: $uni-searchbar-height;
+		padding: 5px 8px 5px 0px;
+		border-width: 0.5px;
+		border-style: solid;
+		border-color: $uni-border-color;
+	}
+
+	.uni-searchbar__box-icon-search {
+		/* #ifndef APP-NVUE */
+		display: flex;
+		/* #endif */
+		flex-direction: row;
+		width: 32px;
+		justify-content: center;
+		align-items: center;
+		color: $uni-text-color-placeholder;
+	}
+
+	.uni-searchbar__box-search-input {
+		flex: 1;
+		font-size: $uni-font-size-base;
+		color: $uni-text-color;
+	}
+
+	.uni-searchbar__box-icon-clear {
+		align-items: center;
+		line-height: 24px;
+		padding-left: 5px;
+	}
+
+	.uni-searchbar__text-placeholder {
+		font-size: $uni-font-size-base;
+		color: $uni-text-color-placeholder;
+		margin-left: 5px;
+	}
+
+	.uni-searchbar__cancel {
+		padding-left: 10px;
+		line-height: $uni-searchbar-height;
+		font-size: 14px;
+		color: $uni-text-color;
+	}
+</style>

+ 6 - 0
pages.json

@@ -44,6 +44,12 @@
 				"navigationBarTitleText": ""
 			}
 		},
+		{
+			"path": "pages/product/productList/productList",
+			"style": {
+				"navigationBarTitleText": ""
+			}
+		},
 		{
 			"path": "pages/confirmOrder/confirmOrder",
 			"style": {

+ 1 - 0
pages/index/index.vue

@@ -82,6 +82,7 @@
 						<view class="product-text">{{item.goodsName}}</view>
 					</view>
 				</view>
+				<navigator class="common-content-blink" url="/pages/product/productList/productList">查看更多</navigator>
 				<!-- <view class="common-content-blink">查看更多 ></view> -->
 			</view>
 			<!-- 碳汇产品展示 结束 -->

+ 24 - 0
pages/product/productList/productList.css

@@ -0,0 +1,24 @@
+.producttype-wrap >>> .uni-searchbar__box{justify-content: left;border-color: #26D18B;border-radius: 50rpx!important;background-color: #fff!important;}
+.producttype-wrap >>> .uni-searchbar{padding-left: 0;}
+
+.producttype{display: flex;background: #fff;}
+.producttype-nav{position: fixed;left: 0;bottom: 0;top: calc(44px + env(safe-area-inset-top));top: 0;width: 200rpx;height: 100%;box-sizing: border-box;background-color: #F6F6F9;overflow-y: auto;}
+.producttype-nav-item{position: relative;padding: 29rpx 0;box-sizing: border-box;text-align: center;font-size: 30rpx;font-weight: 500;color: #333;line-height: 42rpx;}
+.producttype-nav-item.active{background-color: #fff;color: #26D18B;}
+.producttype-nav-item.active::before{content: '';position: absolute;left: 0;top: 50%;margin-top: -15rpx;width: 6rpx;height: 30rpx;background: #26D18B;border-radius: 3px;}
+
+.producttype-con{position: relative;flex: 1;margin: 0 0 0 237rpx;box-sizing: border-box;height: 100%;overflow-y: auto;}
+
+.producttype-wrap .product-wrap{margin: 0;}
+
+.product-item{display: flex;align-items: center;margin-bottom: 24rpx;line-height: 1.5;}
+.product-item-img{width: 150rpx;height: 150rpx;margin-right: 16rpx;}
+.product-item-til{font-size: 28rpx;color: #333;}
+.product-item-code{font-size: 24rpx;color: #999;}
+.product-item-price{font-size: 24rpx;color: #26D18B;}
+
+
+
+
+
+

+ 219 - 0
pages/product/productList/productList.vue

@@ -0,0 +1,219 @@
+<template>
+	<view class="pages producttype-wrap">
+		<view class="producttype">
+			<view class="producttype-nav">
+				<view v-for="(item,index) in navitem" :key="index" @click="typeclick(index)" :class="{active:index==ins}" class="producttype-nav-item">{{ item.typeName }}</view>
+			</view>
+			<view class="producttype-con">
+				<view class="search">
+					<view class="searchTxt">
+						<uni-search-bar :placeholder="searchtxt" @confirm="search" v-model="searchtxt" @input="search" ></uni-search-bar>
+					</view>
+				</view>		
+				<!-- 搜索 结束 -->				
+				<mescroll-body ref="mescrollRef" @init="mescrollInit" @down="downCallback" @up="upCallback" :bottom="0" :down="downOption" :up="upOption">
+					<!-- <view class="product-wrap"> -->
+						<view v-for="(item,index) in productlist" :key="index" @click="productclick(item.guid)" class="product-item">
+							<image class="product-item-img" :src="$onlineImg+item.goodsImages | firstImg" mode="scaleToFill"></image>
+							<view class="product-item-info">
+								<view class="product-item-til">{{item.goodsName}}</view>
+								<view class="product-item-code">编号:{{item.goodsCode}}</view>
+								<view class="product-item-price"><text class="rmb">¥</text> <text class="price">{{item.price}}</text> / KG</view>
+							</view>
+						</view>
+					<!-- </view> -->
+				</mescroll-body>				
+			</view>
+			<!-- producttype-con end -->
+		</view>
+		<!-- fix-content end -->
+		
+	</view>
+</template>
+
+<script>
+	// 引入mescroll-mixins.js
+	import MescrollMixin from "@/components/mescroll-uni/mescroll-mixins.js";	
+	// 引入mescroll-body组件 (如已在main.js注册全局组件,则省略此步骤)
+	import MescrollBody from "@/components/mescroll-uni/mescroll-body.vue"; // 注意.vue后缀不能省
+	
+	import uniSearchBar from '@/components/uni-search-bar/uni-search-bar.vue'
+	export default {
+		mixins: [MescrollMixin], // 使用mixin
+		components: {
+			MescrollBody,
+			uniSearchBar,
+		
+		},
+		data() {
+			return {
+				$onlineImg:this.$onlineImg,
+				useoption:true,
+				token:'',
+				params:{
+					queryStr:'',
+					productTypeGuid:''
+				},
+				searchtxt:'产品名称',
+				mescroll: null, // mescroll实例对象 (此行可删,mixins已默认)
+				// 下拉刷新的配置(可选, 绝大部分情况无需配置)
+				downOption: { 
+					// ...
+				},
+				// 上拉加载的配置(可选, 绝大部分情况无需配置)
+				upOption: {
+					page: {
+						size: 10 // 每页数据的数量,默认10
+					},
+					noMoreSize: 5, // 配置列表的总数量要大于等于5条才显示'-- END --'的提示
+					empty: {
+						tip: '暂无相关数据'
+					}
+				},
+				//nav active
+				ins:0,
+				//菜单类别
+				navitem:[],
+				//热门列表
+				// hotlist:[
+				// ],
+				//productlist
+				productlist:[],
+				//显示的分类标题
+				nowtype:'',
+			}
+		},
+		onShow() {
+		},
+		onLoad(option) {
+			console.log('option',option);
+			this.token = this.$store.state.token;
+			this.nowtype = this.navitem[this.ins];
+			this.params.queryStr = this.nowtype;
+			if(option.search){
+				this.nowtype = option.search;
+				this.searchtxt = option.search;				
+			}
+			//获取产品分类
+			this.$api.http.post(this.config.apiBaseurl + '/carbon-h5/wap/goods/getGoodsTypeList',{},{
+				header: {
+				Accept:'application/json',
+				Authorization: 'Bearer '+ this.token, //注意Bearer后面有一空格
+			},
+			}).then(res => {
+				// console.log('产品分类',res);
+				this.navitem = res.data.retBody;
+				// console.log('this.navitem',this.navitem);
+				this.nowtype = this.navitem[this.ins].typeName;
+				this.params.productTypeGuid = this.navitem[this.ins].guid;
+				// this.searchtxt = this.navitem[this.ins].typeName;
+				if(this.useoption&&option.search){
+					this.params.productTypeGuid = '';
+					this.params.queryStr = option.search;
+					this.searchtxt = option.search;
+					this.ins = null;					
+				}
+				this.downCallback();
+			}).then(()=>{
+				this.useoption = false;
+				this.params.queryStr = '';
+			}).catch(err => {
+				console.log(err)
+			});
+			
+		},
+		methods: {
+			//搜索
+			search(e) {	
+				this.params.queryStr = e.value;
+				this.params.productTypeGuid = '';
+				this.downCallback();				
+				this.searchtxt = this.params.queryStr||'产品名称';
+				this.ins = null;
+				// this.poorList = [];
+				// this.params.farmerName = e.value;
+				// this.pagination = Object.assign(this.pagination,{"farmerName":e.value});
+				// this.pagination.pageNo = 1;
+				// this.getPoorList(this.pagination)
+			},
+			
+			/*mescroll组件初始化的回调,可获取到mescroll对象 (此处可删,mixins已默认)*/
+			mescrollInit(mescroll) {
+				this.mescroll = mescroll;
+			},
+			downCallback(){
+				this.mescroll.resetUpScroll(); // 重置列表为第一页 (自动执行 page.num=1, 再触发upCallback方法 )
+			},
+			/*上拉加载的回调*/
+			upCallback(page) {
+				let pageNum = page.num; // 页码, 默认从1开始
+				let pageSize = page.size; // 页长, 默认每页10条
+				this.params = Object.assign(this.params,{pageNum:pageNum,pageSize:pageSize});
+				// console.log('this.params',this.params);
+				this.$api.http.post(this.config.apiBaseurl + '/carbon-h5/wap/goodsManage/searchByPage',this.params,{
+					header: {
+					Accept:'application/json',
+					Authorization: 'Bearer '+ this.token, //注意Bearer后面有一空格
+				},
+				}).then(data => {
+					if(data.data.code=='1001'){
+						// uni.redirectTo({
+						// 	url:'/pages/login/login?backpage=/pages/index/index'+'&backtype='+2,
+						// });							
+					};
+					// console.log(data);
+					// 接口返回的当前页数据列表 (数组)
+					let curPageData = data.data.retBody;
+					// 接口返回的当前页数据长度 (如列表有26个数据,当前页返回8个,则curPageLen=8)
+					let curPageLen = curPageData.length; 
+					this.productlist = curPageData;
+					console.log('this.productlist',this.productlist);
+					// 接口返回的总页数 (如列表有26个数据,每页10条,共3页; 则totalPage=3)
+					// let totalPage = data.xxx; 
+					// 接口返回的总数据量(如列表有26个数据,每页10条,共3页; 则totalSize=26)
+					let totalSize = data.data.retHead.total; 
+					// 接口返回的是否有下一页 (true/false)
+					// let hasNext = data.xxx; 
+					
+					//设置列表数据
+					if(page.num == 1) this.productlist = []; //如果是第一页需手动置空列表
+					this.productlist = this.productlist.concat(curPageData); //追加新数据
+					
+					//方法二(推荐): 后台接口有返回列表的总数据量 totalSize
+					this.mescroll.endBySize(curPageLen, totalSize); 
+			
+					// setTimeout(()=>{
+					// 	this.mescroll.endSuccess(curPageLen)
+					// },20)
+				
+				}).catch(err => {
+					this.mescroll.endErr()
+					console.log(err)
+				
+				});								
+			},
+			
+			//左侧导航点击
+			typeclick(num){
+				this.ins=num;
+				this.nowtype = this.navitem[num].typeName;
+				// this.params.queryStr = this.nowtype;
+				this.params.productTypeGuid = this.navitem[this.ins].guid;
+				// console.table({'this.nowtype':this.nowtype,'this.params.queryStr':this.params.queryStr})
+				this.downCallback();
+				// this.searchtxt = this.navitem[num].typeName;
+			},
+			//产品点击
+			productclick(id){
+				uni.navigateTo({
+					url:`/pages/product/product?guid=${id}`,					
+				})				
+			},
+
+		}
+	}
+</script>
+
+<style scoped>
+	@import url("./productList.css");
+</style>