Browse Source

Merge branch 'master' of http://47.98.226.240:3000/twt/jikeH5

* 'master' of http://47.98.226.240:3000/twt/jikeH5:
  111
  bug修改
  11

# Conflicts:
#	pages/addjk/activity.vue
guo 2 years ago
parent
commit
055080021b

+ 19 - 18
pages.json

@@ -1,20 +1,26 @@
 {
 	"pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
-		
-		{
-		    "path" : "pages/addjk/activity",
-		    "style" :                                                                                    
-		    {
-		        "navigationStyle": "custom",
-		        "enablePullDownRefresh": true
-		    }
-		    
-		},
+		{
+			"path": "pages/index/index",
+			"style": {
+				"navigationBarTitleText": "uni-app"
+			}
+		},
 		{
 			"path": "pages/addjk/choice",
 			"style": {
-				"navigationBarTitleText": "选择素材"
+				"navigationBarTitleText": "选择素材",
+				"navigationStyle": "custom"
 			}
+		},
+		{
+		    "path" : "pages/addjk/activity",
+		    "style" :                                                                                    
+		    {
+		        "navigationStyle": "custom",
+		        "enablePullDownRefresh": true
+		    }
+		    
 		},
 		{
 			"path": "pages/addjk/addActivity",
@@ -46,12 +52,7 @@
 				"navigationBarTitleText": "活动详情"
 			}
 		},
-		{
-			"path": "pages/index/index",
-			"style": {
-				"navigationBarTitleText": "uni-app"
-			}
-		},
+		
 		{
 			"path": "pages/addjk/signJkDetail",
 			"style": {
@@ -72,7 +73,7 @@
 	"globalStyle": {
 		"navigationBarTextStyle": "black",
 		"navigationBarTitleText": "uni-app",
-		"navigationBarBackgroundColor": "#F8F8F8",
+		"navigationBarBackgroundColor": "#ffffff",
 		"backgroundColor": "#F8F8F8"
 	},
 	"uniIdRouter": {}

+ 38 - 5
pages/addjk/activity.vue

@@ -92,16 +92,51 @@
 				itemData: [],
 				noMoreShow: false,
 				tabIndex: '',
-
+                type:'',
 			}
 		},
-		onLoad() {
+		// onBackPress(options){
+		// 	if (options.from === 'navigateBack') {
+		// 	        return false
+		// 	    }
+		// 	console.log(options)
+		// 	console.log("返回")
+		// 	return true; 
+		// },
+		onLoad(opt) {
 			this.iStatusBarHeight = uni.getSystemInfoSync().statusBarHeight;
 			this.page = 1
-			this.myOrderCoupon()
+			this.myOrderCoupon();
+			this.type=opt.type
 		},
 
+
 		methods: {
+			
+			goAdd(){
+				uni.navigateTo({
+					url:'choice?type=2'
+				})
+			},
+			goback(){
+				if(this.type==2){
+					uni.navigateBack()
+				}else{
+					var standalone = window.navigator.standalone
+					var userAgent = window.navigator.userAgent.toLowerCase()
+					var safari = /safari/.test(userAgent)
+					var ios = /iphone|ipod|ipad|mac/.test(userAgent)
+					var android = /android/.test(userAgent)
+					if (ios) {
+									 if ( true) {//!standalone&& !safari
+									   window.webkit.messageHandlers.goMyNav.postMessage(null)
+									 }
+					} else if (android) {
+									 window.android.postMessage()
+					}
+				}
+			   
+			},
 			open(item) {
 				var that = this;
 				uni.showLoading({
@@ -121,8 +156,6 @@
 					that.myOrderCoupon()
 				})
 			
-			
-			
 			},
 			stop(item) {
 

+ 55 - 1
pages/addjk/choice.vue

@@ -1,5 +1,13 @@
 <template>
 	<view class="content">
+		<view class="nav">
+			<view class="uni-page-head-btnBox">
+				<view class="uni-page-head-btn" @click="goback"><i class="uni-btn-icon" ></i></view>
+			</view>
+			
+			<view class="Navtitle">选择素材</view>
+			<view class="uni-page-head-btnBox"></view>
+		</view>
 		<view class="zhidingyiBox">
 			<view class="zhidingyi" @click="upimg">
 				<view class="zdyLeft">
@@ -35,14 +43,43 @@
 			return {
 				list:'',
 				imgurl:'',
+				type:'',
 			}
 		},
-		onLoad() {
+		onLoad(opt) {
           this.getSetTheGuestList();
+		  this.type=opt.type;
 		  //?token=1BAD122A96BA41E49200322381DC5D34&uid=DC0B84EA-A67B-4A4B-8EAE-F55A13CF8217
 		},
+		// onBackPress(e){
+		// 	console.log(e)
+		// 	console.log("返回")
+		// 	return true; 
+		// },
+		
 		methods: {
+		   goback(){
+			   if(this.type==2){
+				   uni.navigateBack()
+			   }else{
+				   var standalone = window.navigator.standalone
+				   var userAgent = window.navigator.userAgent.toLowerCase()
+				   var safari = /safari/.test(userAgent)
+				   var ios = /iphone|ipod|ipad|mac/.test(userAgent)
+				   var android = /android/.test(userAgent)
+				   if (ios) {
+				     if ( true) {//!standalone&& !safari
+				       window.webkit.messageHandlers.goMyNav.postMessage(null)
+				     }
+				   } else if (android) {
+				     window.android.postMessage()
+				   }
+			   }
+			   
+			   
+		   },
 		   goAdd(item){
+			   uni.removeStorageSync('ckmusic');
 				uni.navigateTo({
 					url:'addActivity?img='+item.Img
 				})
@@ -95,6 +132,23 @@
 </script>
 
 <style scoped>
+	.nav{
+		height: 44px;
+		background: #ffffff;
+		display: flex;
+		justify-content: space-between;
+		line-height: 44px;
+		font-size: 16px;
+		font-weight: 700;
+	}
+	.uni-page-head-btnBox{
+		width: 40px;
+		padding-top: 5px;
+	}
+	.uni-btn-icon{
+		color: #000000;
+		font-size: 27px;
+	}
 	.content{
 		min-height: 100vh;
 		background:#F4F5F7 ;

+ 32 - 10
pages/addjk/eadit.vue

@@ -235,8 +235,8 @@
 					
 					this.clWhereString=jkdata.clWhere;
 					this.clWhereList=this.clWhereString.slice(',');
-					this.startTime=jkdata.startTime.slice(0,10);
-					this.endTime=jkdata.endTime.slice(0,10);
+					this.startTime=jkdata.startTime.slice(0,10)+ ' 00:00:00';
+					this.endTime=jkdata.endTime.slice(0,10)+ ' 23:59:59';
 					this.payType=jkdata.payType;
 					this.img=res.data.img.img;
 					if(res.data.imgList){
@@ -248,16 +248,36 @@
 					var shopList=[];
 					if(res.data.shopList){
 						res.data.shopList.forEach(item=>{
+							item.id=item.shopId
 							shopNames.push(item.shopName)
 							shopList.push(item.shopId)
 						})
 						this.shopNames=shopNames.join(',')
 						this.shopList=shopList.join(',')
 					}
-					this.ckMusic=res.data.selectedMusic
-					this.music=ckMusic.id;
-					console.log(this.imgListArr)
+					var useshoplist=res.data.shopList
+					this.ckMusic=res.data.selectedMusic;
+					if(this.ckMusic){
+						this.music=this.ckMusic.id;
+						uni.setStorage({
+								key: 'ckmusic',
+								data: this.ckMusic,
+								 success: function () {	
+											
+								 }
+						});
+					}else{
+						uni.removeStorageSync('ckmusic');
+					}
 					
+					//console.log(this.imgListArr)
+					uni.setStorage({
+							key: 'shopckList',
+							data: useshoplist,
+							 success: function () {	
+								
+						}
+					});
 			  		//this.list=res.data
 			   })
 		  },
@@ -293,7 +313,7 @@
 		  	});
 		  },
 		  preview(){
-			
+			//console.log(this.clWhere)
 			 // if(this.money==0){
 				//  this.money=0
 			 // }
@@ -319,7 +339,7 @@
 					 duration: 2000
 				});
 				return false;
-			}else if(this.clWhere==''){
+			}else if(this.clWhereString==''){
 				uni.showToast({
 					 title: '请选择报名凭证',
 					 icon:'none',
@@ -333,7 +353,7 @@
 					 duration: 2000
 				});
 				return false;
-			}else if(this.money!=0&&this.money==''&&payType==1){
+			}else if(this.money!==0&&this.money==''&&this.payType==1){
 				uni.showToast({
 					 title: '请输入支付金额',
 					 icon:'none',
@@ -341,11 +361,12 @@
 				});
 				return false;
 			}
+			//return false;
 			var editdata={
 				id:this.id,
 				activityName:this.activityName,
-				startTime:this.startTime,
-				endTime:this.endTime,
+				startTime:this.startTime+ ' 00:00:00',
+				endTime:this.endTime+ ' 23:59:59',
 				number:this.number,
 				activityContent:this.activityContent,
 				clWhere:this.clWhereString,
@@ -356,6 +377,7 @@
 				img:this.img,
 				imgList:this.imgListArr.join(','),
 				clState:'',
+				
 			} 
 			console.log(editdata)
 			uni.setStorage({

+ 221 - 4
pages/addjk/jkDetail.vue

@@ -5,13 +5,13 @@
 		</view>
 		<view class="cont">
 			<view class="name">{{info.activityName}}</view>
-			<view class="name2">{{info.startTime}}~{{info.endTime}}</view>
+			<view class="name2">{{info.startTime.slice(0,10)}}~{{info.endTime.slice(0,10)}}</view>
 			<view class="name3">{{info.activityContent}}</view>
 		</view>
 		<view class="shopBox">
 			<view class="shopBoxTop">
 				<view class="shopMs">活动门店</view>
-				<view class="shopTy">
+				<view class="shopTy" @click="showuse">
 					<view class="shopTyTxt">{{shopNum}}家门店通用</view>
 					<img src="../../static/img/jt2.png" alt="" class="shopjt">
 				</view>
@@ -48,6 +48,46 @@
 			<view class="bottomLeft" @click="edit1">编辑活动内容</view>
 			<view class="bottomRight" @click="generate">生成活动</view>
 		</view>
+		
+		<!-- 适用门店 -->
+		<view class="baomingBox ckshopBox" v-if="useShopShow" @click="noShowShop2">
+			<view class="baomingCont" @click.stop="">
+				<view class="bmTop">
+					<view class="bmTitle">活动门店</view>
+					<img src="../../static/img/chahao.png" alt="" class="bmChimg" @click="noShowShop2">
+				</view>
+				<view style="padding: 0 24rpx; height: 45vh;overflow-y: scroll;">
+					<view class="ckshopLine" v-for="(item,index) in shopckList" >
+						<view class="shoplineLeft">
+							<image :src="item.photoPath" mode="" class="shopImg" v-if="item.photoPath"></image>
+							<image src="../../static/img/noimg.png" mode="" class="shopImg" v-else></image>
+						</view>
+						<view class="shopright" style="padding-left: 20rpx;">
+							<view class="shopTop">
+								<view class="shopName">{{item.shopName}}</view>
+							</view>
+							<view class="brandsBg" v-if="item.brands">
+								<view class="brands" v-for="(v,index2) in item.brands.split(',')">{{v}}</view>
+							</view>
+							<view class="shopTime"><span v-if="item.startTime">{{item.startTime}}</span> - <span
+									v-if="item.endTime">{{item.endTime}}</span> </view>
+							<view class="shopBottomLeft">
+								<span class="shopaddress"
+									v-if="item.address">{{item.provinceName}}{{item.cityName}}{{item.areaName}}{{item.address}}</span>
+								<span v-if="item.distance&&item.distance!= '0.00'">{{item.distance}}km</span>
+							</view>
+						</view>
+					</view>
+				</view>
+				
+				
+			</view>
+		</view>
+		<!-- <audio id="video"  controls autoplay="autoplay" ref="iosclick" loop="loop" >
+		  <source src="http://dmsimg.66km.com/music/sakuratears.mp3" type="audio/mpeg">
+		 </audio> -->
+		 <img src="../../static/img/mp3.png" class="mp3Img" @click="play()" v-if="!payshow&mp3Url!=''">
+		 <img src=".../../static/img/mp31.png" class="mp3Img" @click="play2()" id="bofang" v-if="payshow&mp3Url!=''">
 	</view>
 </template>
 
@@ -59,6 +99,12 @@
 				type:'',
 				shopNum:'',
 				shopInfo:'',
+				useShopShow:false,
+				shopckList:'',
+				ckmusic:'',
+				bgmMusic:'',
+				payshow:false,
+				mp3Url:'',
 			}
 		},
 		onLoad(opt) {
@@ -71,9 +117,49 @@
 				})
 			}
 			this.getShopinfo()
-          
+            this.shopckList= uni.getStorageSync("shopckList");
+			this.ckmusic=uni.getStorageSync("ckmusic");
+			if(this.ckmusic){
+				this.mp3Url=this.ckmusic.music;
+				this.bgmMusic = uni.createInnerAudioContext();
+				this.bgmMusic.autoplay = true;//自动播放
+				this.bgmMusic.loop = true;//循环播放
+				this.bgmMusic.src = 'http://dmsimg.66km.com/music/sakuratears.mp3';//背景音乐地址
+				this.bgmMusic.onPlay(function(){
+				   console.log('背景音乐播放中');
+						
+				});
+				this.bgmMusic.onError((res) => {
+				  console.log(res.errMsg);
+				  console.log(res.errCode);
+				});
+			}
+			
+			//console.log(this.bgmMusic)
+			
+		},
+		onUnload(){
+			this.bgmMusic.stop()
 		},
 		methods: {
+			play2(){
+				 this.bgmMusic.play();
+				 this.payshow=false;
+			},
+			play(){
+				this.payshow=true;
+				this.bgmMusic.stop(()=>{
+				
+				console.log('背景音乐停止了');
+				
+				});
+			},
+			noShowShop2(){
+				this.useShopShow=false;
+			},
+			showuse(){
+				this.useShopShow=true;
+			},
 			call() {
 				uni.makePhoneCall({
 					phoneNumber: this.shopInfo.mobilePhone
@@ -121,13 +207,25 @@
 								 icon:'none',
 								 duration: 2000
 							});
+							uni.navigateTo({
+								url:'activity?type=2'
+							})
 						}
 						//this.list=res.data
 				 })
 			},
 			getShopinfo(){
 				this.$http('openH5SetTheGuest/getShopinfo',{},'GET').then(res => {
-						this.shopInfo=res.data
+						//this.shopInfo=res.data;
+						var shopinfo=res.data;
+						this.shopckList.forEach(item=>{
+							if(item.id==shopinfo.id){
+								this.shopInfo=shopinfo
+							}
+						})
+						if(this.shopInfo==''){
+							this.shopInfo=this.shopckList[0]
+						}
 				 })
 			},
             generate(){
@@ -156,6 +254,89 @@
 </script>
 
 <style scoped>
+	.mp3Img{
+	 /* transform: translate(-1584.4%, 121.5%) scale(1); */
+	  position: fixed;
+	  top: 100rpx;
+	  right: 40rpx;
+	  width: 60rpx;
+	  height: 60rpx;
+	}
+	.shopImg {
+		width: 146rpx;
+		height: 146rpx;
+		border-radius: 6rpx;
+	}
+	.ckshopLine{
+		display: flex;
+		padding: 20rpx 0;
+		border-bottom: 1px solid #EEEEEE;
+	}
+	.baomingBox{
+		width: 750rpx;
+		height: 100vh;
+		background: rgba(0, 0, 0, 0.4);
+		position: fixed;
+		top: 0;
+		left: 0;
+		z-index: 11;
+	}
+	.bmshopjt{
+		width: 12rpx;
+		height: 20rpx;
+		margin-top: 10rpx;
+	}
+	.bmlineInput{
+		color: #333333;
+		font-size: 28rpx;
+		height: 98rpx;
+		line-height: 98rpx;
+	}
+	.bmshopname{
+		font-weight: 400;
+		color: #999999;
+		font-size: 28rpx;
+		line-height: 40rpx;
+		width: 500rpx;
+		white-space:nowrap;
+		overflow:hidden;
+		text-overflow:ellipsis;
+	}
+	.bmshopLine{
+		display: flex;
+		justify-content: space-between;
+		padding: 26rpx 0;
+		border-bottom: 1px solid #EEEEEE;
+	}
+	.bmLine{
+		border-bottom: 1px solid #EEEEEE;
+	}
+	.bmTop{
+		display: flex;
+		justify-content: space-between;
+		padding: 40rpx 24rpx 10rpx 24rpx;
+	}
+	.bmTitle{
+		font-weight: 500;
+		color: #3C3C3C;
+		font-size: 30rpx;
+		line-height: 36rpx;
+	}
+	.bmChimg{
+		width: 36rpx;
+		height: 36rpx;
+	}
+	.baomingCont{
+		position: absolute;
+		width: 750rpx;
+		height:850rpx;
+		padding-bottom: constant(safe-area-inset-bottom);
+		padding-bottom: env(safe-area-inset-bottom);
+		left: 0;
+		bottom: 0;
+		background: #ffffff;
+		border-radius: 24rpx 24rpx 0px 0px;
+	}
 	.shopRightIcon{
 		width: 44rpx;
 		height: 44rpx;
@@ -299,4 +480,40 @@
 		color: #FFFFFF;
 		font-size: 30rpx;
 	}
+	.brandsBg {
+		display: flex;
+	    height: 38rpx;
+		flex-wrap: wrap;
+		align-items: center;
+		overflow: hidden;
+		padding: 5rpx 0rpx;
+	
+	}
+	
+	.brands {
+		border-radius: 4rpx;
+		padding: 0 5rpx;
+		color: #F19D01;
+		height: 28rpx;
+		border: 1px solid #F19D01;
+	
+		font-size: 20rpx;
+		line-height: 28rpx;
+		margin: 5rpx 10rpx 5rpx 0rpx;
+	}
+	
+	.timeBg {
+		display: flex;
+	
+	}
+	
+	.shopTime {
+		color: #666666;
+		font-size: 22rpx;
+	}
+	
+	.addressBox {
+		color: #666666;
+		font-size: 22rpx;
+	}
 </style>

+ 1 - 4
pages/index/index.vue

@@ -1,9 +1,6 @@
 <template>
 	<view class="content">
-		<image class="logo" src="/static/logo.png"></image>
-		<view class="text-area">
-			<text class="title">{{title}}</text>
-		</view>
+		
 	</view>
 </template>
 

BIN
static/img/chahao.png


BIN
static/img/mp3.png


BIN
static/img/mp31.png


BIN
static/img/noimg.png


BIN
static/img/scimg.png