| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374 | 
							- <template>
 
- 	<!-- 经销商库存页面 -->
 
- 	<scroll-view scroll-y @scrolltolower="scrollBottom" class="scroll-view-container">
 
- 		<view class="header">
 
- 			<view class="header-one">
 
- 				库存是否充足:<text>{{total | filterTotal}}</text>
 
- 			</view>
 
- 			<view class="content">
 
- 				<u-button :custom-style="buttonCustomStyle" :hair-line="false" hover-class="none" @click="changeTab(0)">全部</u-button>
 
- 				<u-button :custom-style="buttonCustomStyle" :hair-line="false" hover-class="none" @click="changeTab(1)">品牌</u-button>
 
- 				<u-button :custom-style="buttonCustomStyle" :hair-line="false" hover-class="none" @click="changeTab(2)">花纹</u-button>
 
- 				<u-select style=" color: #fff;" v-model="showBrand" :list="brandList" @confirm="confirmBrand"></u-select>
 
- 				<u-select style=" color: #fff;" v-model="showpattern" :list="patternList" @confirm="confirmPattern"></u-select>
 
- 				<!-- <u-calendar style=" color: #fff;" v-model="showDate" :mode="mode"></u-calendar> -->
 
- 				<u-search :show-action="true" v-model="currentSpec" :animation="true" @custom="searchSpec" @search="searchSpec"
 
- 				 :style="inputCustomStyle" @focus="inputFocus" @blur="inputBlur" placeholder="请输入规格"></u-search>
 
- 			</view>
 
- 		</view>
 
- 		<view class="content-one">
 
- 			<template v-if="datalist&&datalist.length">
 
- 				<view class="content-two" v-for="(item,index) in datalist" :key="index" v-cloak>
 
- 					<view>
 
- 						{{ item.brand }}
 
- 					</view>
 
- 					<view>
 
- 						{{ item.maktx}}
 
- 					</view>
 
- 					<view>
 
- 						{{ item.stock | filterTotal }}
 
- 					</view>
 
- 				</view>
 
- 			</template>
 
- 			<u-empty v-else text="暂无数据" mode="list"></u-empty>
 
- 		</view>
 
- 		<u-loadmore v-if="datalist&&datalist.length" :status="loadStatus" bgColor="#f2f2f2" :load-text="loadText"></u-loadmore>
 
- 	</scroll-view>
 
- </template>
 
- <script>
 
- 	import {
 
- 		request
 
- 	} from '@/common/request/request';
 
- 	require("promise.prototype.finally").shim();
 
- 	export default {
 
- 		data() {
 
- 			return {
 
- 				buttonCustomStyle: {
 
- 					border: "none",
 
- 					background: "#0094FE",
 
- 					color: "#ffffff"
 
- 				},
 
- 				total: 0, //总库存数
 
- 				datalist: null,
 
- 				// 品牌信息
 
- 				brandList: null,
 
- 				currenBrand: "", // 选中品牌
 
- 				showBrand: false,
 
- 				// 花纹信息
 
- 				patternList: null,
 
- 				currentPattern: "", // 选中花纹
 
- 				showpattern: false,
 
- 				// 规格信息
 
- 				currentSpec: "",
 
- 				inputCustomStyle: {},
 
- 				// 选中tab
 
- 				currentTab: 0,
 
- 				// showDate: false,
 
- 				// mode: 'date',
 
- 				// 分页信息
 
- 				first: 0,
 
- 				pageSize: 20, //每页条数
 
- 				currentPage: 1, //当前页码
 
- 				totalPage: 0, //总页码数
 
- 				loadStatus: "loadmore",
 
- 				loadText: {
 
- 					loadmore: '轻轻上拉',
 
- 					loading: '努力加载中',
 
- 					nomore: '实在没有了'
 
- 				}
 
- 			};
 
- 		},
 
- 		onLoad() {
 
- 			uni.showLoading({
 
- 				title: "加载中"
 
- 			});
 
- 			this.handleGetFilterData();
 
- 			this.handleGetData();
 
- 		},
 
- 		methods: {
 
- 			scrollBottom(v) {
 
- 				console.log(v);
 
- 				if (this.loadStatus == "loadmore") {
 
- 					this.loadStatus = 'loading';
 
- 					uni.showLoading({
 
- 						title: "加载中"
 
- 					});
 
- 					// 模拟数据加载
 
- 					this.first += 1;
 
- 					this.currentPage += 1;
 
- 					this.handleGetData();
 
- 					this.loadStatus = 'loadmore';
 
- 				}
 
- 			},
 
- 			changeTab(index) {
 
- 				this.currentTab = index;
 
- 				if (this.currentTab == 0) {
 
- 					this.currenBrand = "";
 
- 					this.currentPattern = "";
 
- 					this.currentSpec = "";
 
- 					this.first = 0;
 
- 					this.currentPage = 1;
 
- 					this.handleGetData();
 
- 				} else if (this.currentTab == 1) {
 
- 					this.showBrand = true
 
- 				} else if (this.currentTab == 2) {
 
- 					this.showpattern = true
 
- 				}
 
- 			},
 
- 			// 获取筛选条件
 
- 			handleGetFilterData: function() {
 
- 				var _this = this;
 
- 				request({
 
- 					url: '/app/appAgent/getStoreAgentCondition',
 
- 					method: 'get',
 
- 					data: {
 
- 					}
 
- 				}).then(res => {
 
- 					if (res.data.code == 0) {
 
- 						console.log(res)
 
- 						// 获取品牌列表
 
- 						_this.brandList = [];
 
- 						res.data.data.brands.forEach(function(val, index) {
 
- 							_this.brandList.push({
 
- 								value: index,
 
- 								label: val
 
- 							});
 
- 						});
 
- 						// 获取花纹列表
 
- 						_this.patternList = [];
 
- 						res.data.data.patterns.forEach(function(val, index) {
 
- 							_this.patternList.push({
 
- 								value: index,
 
- 								label: val
 
- 							});
 
- 						});
 
- 					} else {
 
- 						console.log(res)
 
- 						uni.showToast({
 
- 							title: res.data.msg,
 
- 							icon: "none",
 
- 							duration: _this.$store.state.showToastDuration
 
- 						});
 
- 					}
 
- 				}).catch(err => {
 
- 					console.log(err)
 
- 					uni.showToast({
 
- 						title: _this.$store.state.showServerErrorMsg,
 
- 						icon: "none",
 
- 						duration: _this.$store.state.showToastDuration
 
- 					});
 
- 					this.currentPage -= 1;
 
- 				}).finally(() => {
 
- 					setTimeout(() => {
 
- 						uni.hideLoading();
 
- 						this.loading = false;
 
- 					}, 1000)
 
- 				});
 
- 			},
 
- 			// 获取数据
 
- 			handleGetData() {
 
- 				uni.showLoading({
 
- 					title: "加载中"
 
- 				});
 
- 				var _this = this;
 
- 				request({
 
- 					url: '/app/appAgent/getStoreAgentStock',
 
- 					method: 'post',
 
- 					data: {
 
- 						storeId:_this.$store.state.storeInfo.storeId,
 
- 						pagesize: _this.pageSize,
 
- 						page: _this.currentPage,
 
- 						brand: _this.currenBrand,
 
- 						spec: _this.currentSpec,
 
- 						pattern: _this.currentPattern
 
- 					}
 
- 				}).then(res => {
 
- 					if (res.data.code == 0) {
 
- 						console.log(res)
 
- 						// 获取数据列表
 
- 						if (_this.first == 0) {
 
- 							_this.datalist = [];
 
- 							_this.datalist = _this.datalist.concat(res.data.data.stockInfo);
 
- 							_this.total = parseInt(res.data.data.count);
 
- 							_this.totalPage = Math.ceil(_this.total / _this.pageSize);
 
- 							console.log(_this.totalPage)
 
- 						} else {
 
- 							console.log(_this.currentPage);
 
- 							console.log(_this.totalPage)
 
- 							_this.datalist = _this.datalist.concat(res.data.data.stockInfo);
 
- 							console.log(_this.datalist.length)
 
- 						};
 
- 						// 分页
 
- 						if (_this.currentPage < _this.totalPage) {
 
- 							_this.loadStatus = "loadmore"
 
- 						} else {
 
- 							console.log("nomore")
 
- 							_this.loadStatus = "nomore"
 
- 						}
 
- 					} else {
 
- 						console.log(res)
 
- 						uni.showToast({
 
- 							title: res.data.msg,
 
- 							icon: "none",
 
- 							duration: _this.$store.state.showToastDuration
 
- 						});
 
- 					}
 
- 				}).catch(err => {
 
- 					console.log(err)
 
- 					uni.showToast({
 
- 						title: _this.$store.state.showServerErrorMsg,
 
- 						icon: "none",
 
- 						duration: _this.$store.state.showToastDuration
 
- 					});
 
- 					this.currentPage -= 1;
 
- 				}).finally(() => {
 
- 					setTimeout(() => {
 
- 						uni.hideLoading();
 
- 						this.loading = false;
 
- 					}, 1000)
 
- 				});
 
- 			},
 
- 			// 筛选品牌
 
- 			confirmBrand: function(v) {
 
- 				this.currenBrand = v[0].label;
 
- 				this.currentPage = 1;
 
- 				this.first = 0;
 
- 				this.handleGetData();
 
- 			},
 
- 			// 筛选花纹
 
- 			confirmPattern: function(v) {
 
- 				this.currentPattern = v[0].label;
 
- 				this.currentPage = 1;
 
- 				this.first = 0;
 
- 				this.handleGetData();
 
- 			},
 
- 			searchSpec: function() {
 
- 				if (this.currentSpec) {
 
- 					this.first = 0;
 
- 					this.currentPage = 1;
 
- 					this.handleGetData();
 
- 				}
 
- 				console.log(this.currentSpec)
 
- 			},
 
- 			inputFocus() {
 
- 				console.log(111);
 
- 				this.inputCustomStyle = {
 
- 					position: "absolute",
 
- 					zIndex: "100",
 
- 					width: "98%",
 
- 					margin: "6rpx 1%"
 
- 				};
 
- 			},
 
- 			inputBlur() {
 
- 				var _this = this;
 
- 				setTimeout(function() {
 
- 					_this.inputCustomStyle = {};
 
- 				}, 30)
 
- 			}
 
- 		},
 
- 		filters: {
 
- 			filterTotal: function(val) {
 
- 				var valText;
 
- 				if (val >= 10) {
 
- 					valText = "充足"
 
- 				} else {
 
- 					valText = "紧张"
 
- 				};
 
- 				return valText;
 
- 			}
 
- 		}
 
- 	}
 
- </script>
 
- <style lang="scss" scoped>
 
- 	.scroll-view-container {
 
- 		height: 100%;
 
- 	}
 
- 	.header {
 
- 		height: 400rpx;
 
- 		width: 100%;
 
- 		background: #0094FE;
 
- 		color: #fff;
 
- 		font-size: 28rpx;
 
- 	}
 
- 	.header-one {
 
- 		text-align: center;
 
- 		padding-top: 40rpx;
 
- 	}
 
- 	.header-one>text {
 
- 		font-size: 52rpx;
 
- 	}
 
- 	.content {
 
- 		display: flex;
 
- 		justify-content: space-between;
 
- 		width: 700rpx;
 
- 		margin-top: 80rpx;
 
- 	}
 
- 	.content-one {
 
- 		width: 690rpx;
 
- 		// height: 305rpx;
 
- 		background: #FFFFFF;
 
- 		color: #000;
 
- 		font-size: 24rpx;
 
- 		box-shadow: 0px 0px 24px 0px rgba(101, 176, 249, 0.41);
 
- 		border-radius: 20px;
 
- 		margin: -100rpx auto 20rpx auto;
 
- 		min-height: calc(100% - 400rpx);
 
- 	}
 
- 	.content-one-view {
 
- 		width: 6rpx;
 
- 		height: 30rpx;
 
- 		background: #0292FD;
 
- 		position: relative;
 
- 		top: 20rpx;
 
- 		left: 30rpx;
 
- 	}
 
- 	.content-one-text {
 
- 		position: relative;
 
- 		top: -8rpx;
 
- 		left: 60rpx;
 
- 		font-size: 24rpx;
 
- 		font-weight: bold;
 
- 		color: #000;
 
- 	}
 
- 	.content-one-time {
 
- 		position: relative;
 
- 		top: -40rpx;
 
- 		left: 530rpx;
 
- 		font-size: 13rpx;
 
- 		color: #626262;
 
- 	}
 
- 	.content-two {
 
- 		display: flex;
 
- 		justify-content: space-between;
 
- 		font-size: 24rpx;
 
- 		color: #6A6A6A;
 
- 		margin-left: 30rpx;
 
- 		margin-right: 30rpx;
 
- 		padding-top: 25rpx;
 
- 		padding-bottom: 25rpx;
 
- 	}
 
- 	.wrap-flex {
 
- 		display: flex;
 
- 	}
 
- 	.nodata {
 
- 		padding: 48rpx;
 
- 	}
 
- </style>
 
 
  |