captureOption.vue 9.64 KB
<template>
	<view class="condition-wrapper">
		<headerComp :leftImgSrc="leftImg" @leftClick="backFun" :rightText="rightText" @rightClick="save"></headerComp>
		<view class="head-flex" :style="{ top: navheight + 'px'}">
			<!-- <view class="head-item" :class="{ 'active-item': activeType == 'mall' }" @tap="itemClick('mall')">{{ i18n.store }}</view> -->
		</view>
		<view class="handle-content">
			<view class="condition-item" @tap="goStoreList">
				<span class="ctitle">{{ i18n.store }}</span>
				<span class="select-item">{{ selectedMall ? selectedMall.name : '' }}</span>
				<image class="rarrow" :src="rArrowImg" mode="widthFix"></image>
			</view>
			<view class="condition-item" @tap="goGateList">
				<span class="ctitle">监控点</span>
				<span class="select-item">{{ selectedGate ? selectedGate.name : '' }}</span>
				<image class="rarrow" :src="rArrowImg" mode="widthFix"></image>
			</view>
			<view class="condition-item" @tap="goTypeList">
				<span class="ctitle">类型</span>
				<span class="select-item">{{ capturePersonType.name }}</span>
				<image class="rarrow" :src="rArrowImg" mode="widthFix"></image>
			</view>
			<view class="condition-item" @tap="startDateHandle">
				<span class="ctitle">选择日期</span>
				<span class="select-item">{{ dateStartText || '' }}</span>
				<image class="rarrow" :src="rArrowImg" mode="widthFix"></image>
			</view>
			<!-- <view class="condition-item" @tap="endDateHandle">
				<span class="ctitle">结束日期</span>
				<span class="select-item">{{ dateEndText || '' }}</span>
				<image class="rarrow" :src="rArrowImg" mode="widthFix"></image>
			</view> -->
		</view>
		<awesome-picker
		  ref="pickerStart"
		  :data="dateData"
		  :textConfirm="picker.textConfirm"
		  :colorConfirm="picker.colorConfirm"
		  :textCancel="picker.textCancel"
		  :colorCancel="picker.colorCancel"
		  :anchor="currentStartDate"
		  @confirm="dateConfirm">
			<view class="picker-title-text">
				<text>开始日期</text>
			</view>
		 </awesome-picker>
		 <awesome-picker
		   ref="pickerEnd"
		   :data="dateData"
		   :textConfirm="picker.textConfirm"
		   :colorConfirm="picker.colorConfirm"
		   :textCancel="picker.textCancel"
		   :colorCancel="picker.colorCancel"
		   :anchor="currentEndDate"
		   @confirm="endDateConfirm">
			   <view class="picker-title-text">
					<text>结束日期</text>
			   </view>
		  </awesome-picker>
	</view>
</template>

<script>
	import headerComp from '../../../components/header.vue'
	import leftImg from '../../../static/header/backArrow.png'
	import { mapState, mapActions } from 'vuex'
	
	export default {
		components: {
			headerComp
		},
		onLoad(option) {
			uni.getStorage({
				key: 'capturePersonType',
				success: (res) => {
					this.capturePersonType = JSON.parse(res.data);
				}
			})
			uni.getStorage({
				key: 'statusBarH',
				success: (res) => {
					if(res.data) {
						this.navheight = res.data;
					}
				}
			})
		},
		data() {
			return {
				leftImg: leftImg,
				rightText: '保存',
				rArrowImg: '../../../static/analysis/rArrow.png',
				navheight: 0,
				activeType: 'mall',
				typeText: '',
				capturePersonType: {},
				picker: {
					textTitle:'选择',
					textConfirm:'确定',
					textCancel:'取消',
					colorConfirm:'#ffffff',
					colorCancel:'#ffffff',
				},
				cacheTimeStr: '',
				startCacheTimeStr: '',
				endCacheTimeStr: '',
				startPickerIdx: [],
				endPickerIdx: [],
				cachePickerIdx: [],
			}
		},
		created() {
			if(!this.selectedMall) {
				this.$store.dispatch('malls/getMallList', {
					data: {
						accountId: this.getStorage('accountId'),
						_t:Date.parse(new Date()) / 1000
					},
					header: {
						'app-code':'mobile',
						'Authorization': this.getStorage('atoken') //自定义请求头信息
					},
					isMultiple: true
				})
			}
			if(!this.selectedStartTime || !this.selectedEndTime) {
				this.$store.dispatch('malls/getDateData', 15);
			}
			if(!this.capturePersonType.name) {
				this.capturePersonType = {
					id: 1,
					name: '全部类型',
					value: ''
				}
			}
		},
		computed: {
			i18n() {
				return this.$t("index")
			},
			...mapState({
				selectedMall: state => state.malls.checkedMallId,
				selectedGate: state => state.malls.checkedGateId,
				// dateData: state => state.malls.customTimeData,
// 				dateStartText: state => state.malls.selectedCustomStartDate,
// 				dateEndText: state => state.malls.selectedCustomEndDate,
// 				currentStartDate: state => state.malls.pickerCustomStartDate,
// 				currentEndDate: state => state.malls.pickerCustomEndDate,
				
				//
				dateData: state => state.malls.dayDateData,
				dateStartText: state => state.malls.startDayTime,
				dateEndText: state => state.malls.endDayTime,
				currentStartDate: state => state.malls.pickerStartDayDate,
				currentEndDate: state => state.malls.pickerEndDayDate
			})
		},
		watch: {
			selectedMall(val) {
				this.$store.dispatch('malls/getGateList', {
					data: {
						mallId: val.id,
						status: 1,
						isHasFace: 1,
						_t:Date.parse(new Date()) / 1000
					},
					header: {
						'app-code':'mobile',
						'Authorization': this.getStorage('atoken') //自定义请求头信息
					},
					isMultiple: true
				})
			}
		},
		methods: {
			backFun() {
				uni.navigateTo({
					url: `../captureReport/capture?type=${this.activeType}`
				})
			},
			save() {
				if(!this.selectedMall) {
					uni.showToast({
						icon:'none',
						title:'请选择门店'
					});
				}
				if(!this.selectedGate) {
					uni.showToast({
						icon:'none',
						title:'请选择监控点'
					});
				}
				if(!this.dateStartText) {
					uni.showToast({
						icon:'none',
						title:'请选择开始日期'
					});
				}
				if(!this.dateEndText) {
					uni.showToast({
						icon:'none',
						title:'请选择结束日期'
					});
				}
				uni.navigateTo({
					url: `../captureReport/capture?type=${this.activeType}`
				})
			},
			itemClick() {
				
			},
			goStoreList() {
				uni.navigateTo({
					url:"../../conditionList/mallList?backUrl=../passenger/conditions/captureOption&analysisLevel=" + this.activeType,
					animationType: 'slide-in-right',
					animationDuration: 200
				})
			},
			goGateList() {
				uni.navigateTo({
					url:"../../conditionList/gateList?backUrl=../passenger/conditions/captureOption&analysisLevel=" + this.activeType,
					animationType: 'slide-in-right',
					animationDuration: 200
				})
			},
			goTypeList() {
				uni.navigateTo({
					url:"../../conditionList/typeList?backUrl=../passenger/conditions/captureOption&analysisLevel=" + this.activeType,
					animationType: 'slide-in-right',
					animationDuration: 200
				})
			},
			startDateHandle() {
				this.$refs.pickerStart.show();
			},
			endDateHandle() {
				this.$refs.pickerEnd.show();
			},
			dateConfirm(item) {
				this.startCacheTimeStr = this.formatterTimeToStr(item);
				this.startPickerIdx = item;
				if(!this.comparsionSize(this.currentEndDate, this.startPickerIdx)) {
					uni.showToast({
						icon: 'none',
						title: '开始日期不能大于结束日期'
					})
					// setTimeout(() => {
						// this.startDateHandle()
					// }, 500)
				} else {
					this.$store.dispatch('malls/updateStartEndDate', {
						startDate: this.startCacheTimeStr,
						startPickerIdx: this.startPickerIdx
					})
				}
			},
			endDateConfirm(item) {
				this.endCacheTimeStr = this.formatterTimeToStr(item);
				this.endPickerIdx = item;
				if(!this.comparsionSize(this.endPickerIdx, this.currentStartDate)) {
					uni.showToast({
						icon: 'none',
						title: '结束日期不能小于开始日期'
					})
					// setTimeout(() => {
						// this.endDateHandle()
					// }, 500)
					return;
				} else {
					this.$store.dispatch('malls/updateStartEndDate', {
						endDate: this.endCacheTimeStr,
						endPickerIdx: this.endPickerIdx
					})
				}
			},
			comparsionSize(item1, item2) {
				if(item1.length && item2.length) {
					// console.log('comparsionSize', item1, item2)
					let isMoreStart = true;
					item1.forEach((val1, idx1) => {
						if((val1.value).replace(/[\u4E00-\u9FA5]/g, '') < (item2[idx1].value).replace(/[\u4E00-\u9FA5]/g, '')) {
							isMoreStart = false;
						}
					})
					// console.log(isMoreStart);
					return isMoreStart
				} else {
					return false;
				}
			},
// 			formatterTimeToStr(item) {
// 				return item.map(item => item.value)
// 					.join(',')
// 					.replace(/[\u4E00-\u9FA5]/g, '-')
// 					.replace(/\-/g, '')
// 					.replace(/(\d{4}),(\d{2}),(\d{2}),(\d{2}),(\d{2}),(\d{2})/, '$1-$2-$3 $4:$5:$6');
// 			},
			formatterTimeToStr(item) {
				return item.map(item => item.value)
					.join(',')
					.replace(/[\u4E00-\u9FA5]/g, '-')
					.replace(/\-/g, '')
					.replace(/,/g, '-');
				console.log('formatterTimeToStr', this.cacheTimeStr)
			}
		},
	}
</script>

<style>
	.head-flex {
		width: 543.47upx;
		display: flex;
		flex-direction: row;
		font-size: 32.6upx;
		color: #80b4ff;
		position: absolute;
		top: 0;
		left: 0;
		z-index: 10;
		height: 77.89upx;
		line-height: 77.89upx;
		right: 0;
		margin: auto;
	}
	
	.head-item {
		flex: 1;
		text-align: center;
		cursor: pointer;
	}
	
	.active-item {
		color: #fff;
	}
	
	.handle-content {
		
	}
	.condition-item {
		height: 90.57upx;
		line-height: 90.57upx;
		background: #FFFFFF;
		border-bottom: 1px solid #979797;
		position: relative;
	}
	.ctitle {
		font-size: 25.36upx;
		color: #333333;
		position: absolute;
		top: 0;
		left: 23.55upx;
	}
	.select-item {
		font-size: 25.36upx;
		color: #9B9B9B;
		position: absolute;
		top: 0;
		right: 45.28upx;
	}
	.rarrow {
		width: 10.86upx;
		height: 19.92upx;
		position: absolute!important;
		top: 38.04upx;
		right: 23.55upx;
	}
	.picker-title-text {
		margin: 0 auto;
		line-height: 44px;
		color: #fff;
		font-size: 28.98upx;
		text-align: center;
	}
</style>