Browse Source

Merge branch 'master' of http://git.zthymaoyi.com/zyw/tourism

# Conflicts:
#	uni_applet/pages.json
高敬炎 1 year ago
parent
commit
4e3a26906b

+ 2 - 2
uni_applet/config/index.js

@@ -1,8 +1,8 @@
 const dev = {
 	// baseUrlNew: 'http://192.168.110.72:8182',
 	// baseUrlNew: 'http://192.168.110.138:8182',
-	baseUrlNew: 'http://192.168.110.138:8183',
-	// baseUrlNew: 'http://192.168.110.82:8182',
+	// baseUrlNew: 'http://192.168.110.138:8183',
+	baseUrlNew: 'http://192.168.110.82:8183',
 	// baseUrlNew: 'https://cardapi.eliangeyun.com',
 	h5Appid: 'wxb66b599f7f61b46f',
 	debug: false

+ 354 - 0
uni_applet/pageA/cxTable.vue

@@ -0,0 +1,354 @@
+<template>
+	<view class="content">
+		<image src="../static/image/cxb.png" mode="widthFix" style="width: 100vw;"></image>
+		<view class="table">
+			<view class="row" v-for="(item,index) in tableList" :class="item.check?'row-active':''">
+				<image src="../static/image/today.png" mode="widthFix" v-if="item.check" style="width: 34rpx;position: absolute;left: 5px;height: auto;"></image>
+				<view class="col1 color">
+					{{item.name}}
+				</view>
+				<view class="col2 col">
+					{{item.val1}}
+				</view>
+				<view class="col3 col">
+					{{item.val2}}
+				</view>
+				<view class="col4 col">
+					{{item.val3}}
+				</view>
+				<view class="col5 col">
+					{{item.val4}}
+				</view>
+			</view>
+
+		</view>
+	</view>
+</template>
+
+<script>
+	export default {
+		data() {
+			return {
+				isShowStyle:false,
+				tableList: [{
+						name: '日期/时间',
+						val1: '涨潮',
+						val2: '落潮',
+						val3: '涨潮',
+						val4: '落潮',
+						check:false,
+					},
+					{
+						name: '初一/十六',
+						val1: '5:44',
+						val2: '11:44',
+						val3: '17:44',
+						val4: '23:44',
+						check:false,
+					}, {
+						name: '初二/十七',
+						val1: '6:32',
+						val2: '12:32',
+						val3: '18:32',
+						val4: '24:32',
+						check:false,
+					}, {
+						name: '初三/十八',
+						val1: '7:20',
+						val2: '12:20',
+						val3: '19:20',
+						val4: '1:20',
+						check:false,
+					}, {
+						name: '初四/十九',
+						val1: '8:08',
+						val2: '14:08',
+						val3: '20:08',
+						val4: '2:08',
+						check:false,
+					}, {
+						name: '初五/二十',
+						val1: '8:56',
+						val2: '14:56',
+						val3: '20:56',
+						val4: '2:56',
+						check:false,
+					}, {
+						name: '初六/廿一',
+						val1: '9:44',
+						val2: '15:44',
+						val3: '21:44',
+						val4: '3:44',
+						check:false,
+					}, {
+						name: '初七/廿二',
+						val1: '10:32',
+						val2: '16:32',
+						val3: '22:32',
+						val4: '4:32',
+						check:false,
+					}, {
+						name: '初八/廿三',
+						val1: '11:20',
+						val2: '17:20',
+						val3: '23:20',
+						val4: '5:20',
+						check:false,
+					}, {
+						name: '初九/廿四',
+						val1: '12:08',
+						val2: '18:08',
+						val3: '0:08',
+						val4: '6:08',
+						check:false,
+					}, {
+						name: '初十/廿五',
+						val1: '12:56',
+						val2: '18:56',
+						val3: '0:56',
+						val4: '6:56',
+						check:false,
+					}, {
+						name: '十一/廿六',
+						val1: '13:44',
+						val2: '19:44',
+						val3: '1:44',
+						val4: '7:44',
+						check:false,
+					}, {
+						name: '十二/廿七',
+						val1: '14:32',
+						val2: '20:32',
+						val3: '2:32',
+						val4: '8:32',
+						check:false,
+					}, {
+						name: '十三/廿八',
+						val1: '15:20',
+						val2: '21:20',
+						val3: '3:20',
+						val4: '9:20',
+						check:false,
+					}, {
+						name: '十四/廿九',
+						val1: '16:08',
+						val2: '22:08',
+						val3: '4:08',
+						val4: '10:08',
+						check:false,
+					}, {
+						name: '十五/三十',
+						val1: '17:56',
+						val2: '23:56',
+						val3: '5:56',
+						val4: '10:56',
+						check:false,
+					}
+				],
+				day:''
+			}
+		},
+		onLoad() {
+			this.getLunar()
+		},
+		methods: {
+			setRowColor(){
+				for(let i = 1;i<this.tableList.length;i++){
+					this.tableList[i].false
+					let _array = this.tableList[i].name.split("/")
+					if(this.day==_array[0]||this.day==_array[1]){
+						this.tableList[i+1].check = true
+					}
+				}
+			},
+			getLunar(){
+				let that = this
+				var nyear;
+				var nmonth;
+				var nday = -1;
+				var nwday;
+				var nhrs;
+				var nmin;
+				var nsec;
+				var lmonth, lday, lleap; //农历参数
+				function Draw() {
+					NewTick();
+					
+					//显示时间
+					var s = nyear + '年' + nmonth + '月' + nday + '日 ' + '星期' + cweekday(nwday) + ' ' + shapetime(nhrs, nmin, nsec);
+					s += " 农历" + lmonth + "月" + lday; //农历
+					 that.day= lday;
+					//需要展示在页面地方
+					console.log("农历日期---",that.day);
+					that.setRowColor()
+					
+				}
+				function NewTick() {
+					let noww = new Date();
+					if (noww.getDate() != nday) {
+						nyear = noww.getFullYear();
+						nmonth = noww.getMonth() + 1;
+						nwday = noww.getDay();
+						nday = noww.getDate();
+						getlunar(); //获取农历
+					}
+					nhrs = noww.getHours();
+					nmin = noww.getMinutes();
+					nsec = noww.getSeconds();
+				}
+				
+				
+				//辅助函数
+				var hzWeek = new Array("星期日", "星期一", "星期二", "星期三", "星期四", "星期五", "星期六", "星期日");
+				function cweekday(wday) {
+					console.log('星期---',hzWeek[wday]);
+				}
+				function shapetime(vhrs, vmin, vsec) {
+					if (vsec <= 9) vsec = "0" + vsec;
+					if (vmin <= 9) vmin = "0" + vmin;
+					if (vhrs <= 9) vhrs = "0" + vhrs;
+					// return vhrs + ":" + vmin + ":" + vsec
+					console.log("时间日期---",vhrs + ":" + vmin + ":" + vsec);
+				}
+				
+				//阴历函数开始
+				var lunarInfo = new Array(0x04bd8, 0x04ae0, 0x0a570, 0x054d5, 0x0d260, 0x0d950, 0x16554, 0x056a0, 0x09ad0, 0x055d2, 0x04ae0, 0x0a5b6, 0x0a4d0, 0x0d250, 0x1d255, 0x0b540, 0x0d6a0, 0x0ada2, 0x095b0, 0x14977, 0x04970, 0x0a4b0, 0x0b4b5, 0x06a50, 0x06d40, 0x1ab54, 0x02b60, 0x09570, 0x052f2, 0x04970, 0x06566, 0x0d4a0, 0x0ea50, 0x06e95, 0x05ad0, 0x02b60, 0x186e3, 0x092e0, 0x1c8d7, 0x0c950, 0x0d4a0, 0x1d8a6, 0x0b550, 0x056a0, 0x1a5b4, 0x025d0, 0x092d0, 0x0d2b2, 0x0a950, 0x0b557, 0x06ca0, 0x0b550, 0x15355, 0x04da0, 0x0a5b0, 0x14573, 0x052b0, 0x0a9a8, 0x0e950, 0x06aa0, 0x0aea6, 0x0ab50, 0x04b60, 0x0aae4, 0x0a570, 0x05260, 0x0f263, 0x0d950, 0x05b57, 0x056a0, 0x096d0, 0x04dd5, 0x04ad0, 0x0a4d0, 0x0d4d4, 0x0d250, 0x0d558, 0x0b540, 0x0b6a0, 0x195a6, 0x095b0, 0x049b0, 0x0a974, 0x0a4b0, 0x0b27a, 0x06a50, 0x06d40, 0x0af46, 0x0ab60, 0x09570, 0x04af5, 0x04970, 0x064b0, 0x074a3, 0x0ea50, 0x06b58, 0x05ac0, 0x0ab60, 0x096d5, 0x092e0, //1990
+					0x0c960, 0x0d954, 0x0d4a0, 0x0da50, 0x07552, 0x056a0, 0x0abb7, 0x025d0, 0x092d0, 0x0cab5, 0x0a950, 0x0b4a0, 0x0baa4, 0x0ad50, 0x055d9, 0x04ba0, 0x0a5b0, 0x15176, 0x052b0, 0x0a930, 0x07954, 0x06aa0, 0x0ad50, 0x05b52, 0x04b60, 0x0a6e6, 0x0a4e0, 0x0d260, 0x0ea65, 0x0d530, 0x05aa0, 0x076a3, 0x096d0, 0x04bd7, 0x04ad0, 0x0a4d0, 0x1d0b6, 0x0d250, 0x0d520, 0x0dd45, 0x0b5a0, 0x056d0, 0x055b2, 0x049b0, 0x0a577, 0x0a4b0, 0x0aa50, 0x1b255, 0x06d20, 0x0ada0, 0x14b63);
+				function lYearDays(y) {
+					var i, sum = 348;
+					for (i = 0x8000; i > 0x8; i >>= 1) sum += (lunarInfo[y - 1900] & i) ? 1 : 0;
+					return (sum + leapDays(y));
+				}
+				function leapDays(y) {
+					if (leapMonth(y)) return ((lunarInfo[y - 1900] & 0x10000) ? 30 : 29);
+					else return (0);
+				}
+				function leapMonth(y) {
+					return (lunarInfo[y - 1900] & 0xf);
+				}
+				function monthDays(y, m) {
+					return ((lunarInfo[y - 1900] & (0x10000 >> m)) ? 30 : 29);
+				}
+				function Lunar(y, m, d) {
+					var i, leap = 0,
+						temp = 0;
+					var offset = (Date.UTC(y, m, d) - Date.UTC(1900, 0, 31)) / 86400000;
+					for (i = 1900; i < 2050 && offset > 0; i++) {
+						temp = lYearDays(i);
+						offset -= temp;
+					}
+					if (offset < 0) {
+						offset += temp;
+						i--;
+					}
+					this.year = i;
+					leap = leapMonth(i);
+					this.isLeap = false;
+					for (i = 1; i < 13 && offset > 0; i++) {
+						if (leap > 0 && i == (leap + 1) && this.isLeap == false) {--i;
+							this.isLeap = true;
+							temp = leapDays(this.year);
+						} else {
+							temp = monthDays(this.year, i);
+						}
+						if (this.isLeap == true && i == (leap + 1)) this.isLeap = false;
+						offset -= temp;
+					}
+					if (offset == 0 && leap > 0 && i == leap + 1) if (this.isLeap) {
+						this.isLeap = false;
+					} else {
+						this.isLeap = true; --i;
+					}
+					if (offset < 0) {
+						offset += temp; --i;
+					}
+					this.month = i;
+					this.day = offset + 1;
+				}
+				var nStr1 = new Array('', '一', '二', '三', '四', '五', '六', '七', '八', '九', '十', '十一', '十二');
+				var nStr2 = new Array('初', '十', '廿', '卅', '□');
+				function GetcDay(d) {
+					var s;
+					switch (d) {
+						case 10:
+							s = '初十';
+							break;
+						case 20:
+							s = '二十';
+							break;
+						case 30:
+							s = '三十';
+							break;
+						default:
+							s = nStr2[Math.floor(d / 10)];
+							s += nStr1[d % 10];
+							break;
+					}
+					return (s);
+				}
+				function GetcMon(m) {
+					if (m == 1) return '正';
+					else return nStr1[m];
+				}
+				function getlunar() {
+					var lObj = new Lunar(nyear, nmonth - 1, nday);
+					lmonth = GetcMon(lObj.month);
+					lday = GetcDay(lObj.day);
+					lleap = lObj.isLeap;
+					if (lleap == 1) {
+						lmonth = "闰" + lmonth;
+					}
+				}
+				//阴历函数结束
+				Draw();
+			},
+
+		}
+	}
+</script>
+
+<style scoped lang="scss">
+	.content {
+		position: relative;
+
+		.table {
+			position: absolute;
+			top: 170rpx;
+			padding: 20rpx 0;
+			width: 90%;
+			right: 0;
+			left: 0;
+			margin: auto;
+
+			.row {
+				display: flex;
+				justify-content: space-around;
+				align-items: center;
+				.col1 {
+					width: 40%;
+					display: flex;
+					justify-content: center;
+				}
+				.col{
+					width: 20%;
+					display: flex;
+					justify-content: center;
+				}
+			}
+			.row:nth-of-type(2n){
+				    background: rgba(255, 255, 255, 0.6);
+				    padding: 6rpx 0;
+			}
+			.row:nth-of-type(2n+1){
+				       background: rgba(214, 214, 214, 0.7);
+				       padding: 6rpx 0;
+			}
+			.row:nth-of-type(1){
+				     padding: 18rpx 0;
+			}
+		}
+		.row-active{
+			background: #92b8f1!important;
+		}
+	}
+</style>

+ 3 - 0
uni_applet/pageA/find/createLifeService.vue

@@ -337,6 +337,9 @@
 </script>
 
 <style lang="scss" scoped>
+	.content{
+		padding-bottom: 200rpx;
+	}
  .wrap{
 	 padding:20rpx;
  }

+ 2 - 2
uni_applet/pageA/food/detailMap.vue

@@ -1,7 +1,7 @@
 <template>
 	<view>
-		<map style="width: 100%; height: 100vh;" :show-location='true' ref="map" id="map" :latitude="latitude"
-			:longitude="longitude" :markers="marker" :scale="scale" :polyline="polyline" @callouttap='toDL(dataObj)'>
+		<map style="width: 100%; height: 100vh;" :show-location='true' ref="map" id="map" :latitude="dataObj.latitude"
+			:longitude="dataObj.longitude" :markers="marker" :scale="scale" :polyline="polyline" @callouttap='toDL(dataObj)'>
 			<cover-view slot="callout">
 				<block v-for="(item,index) in marker" :key="index">
 					<cover-view class="customCallout" :marker-id="item.id">

+ 62 - 45
uni_applet/pageA/food/menu.vue

@@ -1,23 +1,24 @@
 <template>
 	<view class="content">
-
-		<view class="">
-			<view style='margin:20rpx;'>
+		<view style="padding: 20rpx;">
+			<view>
 				<u-search placeholder="搜索美食" v-model="keyword" clearabled :show-action='false'></u-search>
 			</view>
-			
+
 			<view class="head flex">
 				<image :src="dataObj.coverImage" style="width:60rpx;height:60rpx;border-radius:50%;"></image>
 				<view class="right">
 					{{dataObj.shopNames}}
 				</view>
 			</view>
-			<view class="wrap" v-if="dataObj.dishClassifyInfoList&&dataObj.dishClassifyInfoList.length>0">
-				<view class="item1" v-for="item in dataObj.dishClassifyInfoList" v-if="item.foodDishesInfoList&&item.foodDishesInfoList.length>0">
+			<view class="wrap1" v-if="dataObj.dishClassifyInfoList&&dataObj.dishClassifyInfoList.length>0">
+				<view class="item1" v-for="item in dataObj.dishClassifyInfoList"
+					v-if="item.foodDishesInfoList&&item.foodDishesInfoList.length>0">
 					<view style='font-weight:600;' class="row">
 						{{item.classifyName}}
 					</view>
-					<view style='flex-wrap: wrap;' class="flex" v-if="item.foodDishesInfoList&&item.foodDishesInfoList.length>0">
+					<view style='flex-wrap: wrap;' class="flex"
+						v-if="item.foodDishesInfoList&&item.foodDishesInfoList.length>0">
 						<view class="item2" v-for="item1 in item.foodDishesInfoList">
 							<image :src="item1.dishImage" mode="" class="img"></image>
 							<view class="bottom">
@@ -31,7 +32,7 @@
 									暂无价格
 								</view>
 							</view>
-							
+
 						</view>
 					</view>
 				</view>
@@ -42,9 +43,9 @@
 				<text>营业时间:</text>
 				<text>{{dataObj.startDate}}~{{dataObj.startDate}}</text>
 			</view>
-			<view @click='toTel' v-if='dataObj.contactsPhone'  class="right flex align-item-center">
-				<view style='position:relative;top:4rpx;'><u-icon name="phone" color='#fff'></u-icon></view>
-				<view>电话订餐</view>
+			<view @click='toTel' v-if='dataObj.contactsPhone' class="right flex align-item-center">
+				<view style=''><u-icon name="phone" color='#fff' size="20"></u-icon></view>
+				<view style="font-size: 36rpx;">电话订餐</view>
 			</view>
 		</view>
 	</view>
@@ -69,26 +70,33 @@
 
 		},
 		methods: {
-			toTel(){
+			toTel() {
 				that.$request.baseRequest('admin.tourism.phoneRecordInfo', 'add', {
-					commonId:uni.getStorageSync("userInfo").id,
-					phone:this.dataObj.contactsPhone
-				
+					phoneRecordInfo: JSON.stringify({
+						commonId: uni.getStorageSync("userInfo").id,
+						phone: this.dataObj.contactsPhone
+					})
 				}, failres => {
 					uni.showToast({
 						icon: "none",
 						title: failres.errmsg,
 						duration: 3000
 					});
-				
+
 				}).then(res => {
-					
-				
+					uni.makePhoneCall({
+						phoneNumber: this.dataObj.contactsPhone, // 成功回调
+						success: (res) => {
+							console.log('调用成功!')
+						},
+						// 失败回调
+						fail: (res) => {
+							console.log('调用失败!')
+						}
+					})
+
 				})
-				// uni.makePhoneCall({phoneNumber: this.dataObj.contactsPhone, // 成功回调
-				// success: (res) => {console.log('调用成功!')	},
-				// // 失败回调
-				// fail: (res) => {console.log('调用失败!')}})
+
 			},
 			init() {
 				uni.showLoading({
@@ -118,86 +126,95 @@
 	}
 </script>
 
-<style lang="scss">
+<style lang="scss" scoped>
 	page {
 		background: #fff;
 	}
 
 	.content {
 		box-sizing: border-box;
+		background: #fff;
+		padding-bottom: 200rpx;
+
 	}
 
 	.head {
-		padding: 20rpx;
+		padding: 20rpx 0;
 
 		.right {
 			margin-left: 20rpx;
 		}
 	}
 
-	.wrap {
-		.item1{
-			// margin-bottom: 20rpx;
-		}
-		.item1 .row{
+	.wrap1 {
+		.item1 .row {
 			position: relative;
 			padding-left: 20rpx;
 			margin: 20rpx;
 		}
-		.item1 .row:before{
+
+		.item1 .row:before {
 			position: absolute;
 			content: '';
 			background: #fbb612;
 			width: 6rpx;
 			height: 40rpx;
-			    top: 2px;
-			    left: 0px;
+			top: 2px;
+			left: 0px;
 		}
+
 		.item2 {
 			display: inline-block;
-			width: calc(50vw - 60rpx);
+			width: calc(50vw - 40rpx);
 			margin: 10rpx;
 			box-shadow: 0px 1px 2px 0px #ccc;
 			border-radius: 20rpx;
-			.bottom{
+
+			.bottom {
 				padding: 20rpx;
-				.name{
+
+				.name {
 					margin-bottom: 20rpx;
 				}
-				.price{
+
+				.price {
 					color: #fbb612;
 				}
 			}
 		}
 
 		.img {
-			border-radius: 20rpx 20rpx 0 0 ;
-			width: calc(50vw - 60rpx);
-			height: calc(50vw - 60rpx);
+			border-radius: 20rpx 20rpx 0 0;
+			width: calc(50vw - 40rpx);
+			height: calc(50vw - 40rpx);
 			// width: 344rpx;
 			// height: 344rpx;
 		}
 
 	}
-	.bottom-wrap{
+
+	.bottom-wrap {
 		position: fixed;
 		width: 100vw;
 		bottom: 0;
 		display: flex;
-		.left{
-			
+		background-color: red;
+
+		.left {
+
 			padding: 40rpx;
 			background: #f7f4ed;
 			width: 60vw;
 			box-sizing: border-box;
-			
+
 		}
-		.right{
+
+		.right {
 			box-sizing: border-box;
 			padding: 40rpx;
 			width: 40vw;
 			background: #fbb612;
-			color:#fff;
+			color: #fff;
 		}
 	}
 </style>

+ 248 - 297
uni_applet/pages.json

@@ -8,10 +8,10 @@
 			"style": {
 				"navigationBarTitleText": "美食",
 				"enablePullDownRefresh": false,
-				"navigationStyle":"custom"
+				"navigationStyle": "custom"
 			}
-		
-		},{
+
+		}, {
 			"path": "pages/accommodation/accommodation",
 			"style": {
 				"navigationBarTitleText": "住宿",
@@ -19,7 +19,7 @@
 			}
 
 		},
-		
+
 		{
 			"path": "pages/my/my",
 			"style": {
@@ -42,6 +42,7 @@
 			}
 
 		}
+
 	],
 	"tabBar": {
 		"custom": false,
@@ -49,24 +50,25 @@
 		"selectedColor": "#fbb612",
 		"borderStyle": "white",
 		"backgroundColor": "#ffffff",
-		"list": [{
-				"pagePath": "pages/accommodation/accommodation",
-				"iconPath": "static/image/nav-icon/riLine-hotel-line.png",
-				"selectedIconPath": "static/image/nav-icon/riLine-hotel-line Copy.png",
-				"text": "住宿"
-			},
+		"list": [
+			// {
+			// 	"pagePath": "pages/accommodation/accommodation",
+			// 	"iconPath": "static/image/nav-icon/riLine-hotel-line.png",
+			// 	"selectedIconPath": "static/image/nav-icon/riLine-hotel-line Copy.png",
+			// 	"text": "住宿"
+			// },
 			{
 				"pagePath": "pages/food/food",
 				"iconPath": "static/image/nav-icon/md-restaurant_menu.png",
 				"selectedIconPath": "static/image/nav-icon/md-restaurant_menu Copy.png",
 				"text": "美食"
 			},
-			{
-				"pagePath": "pages/play/play",
-				"iconPath": "static/image/nav-icon/iconPark-landscape.png",
-				"selectedIconPath": "static/image/nav-icon/iconPark-landscape Copy.png",
-				"text": "游玩"
-			},
+			// {
+			// 	"pagePath": "pages/play/play",
+			// 	"iconPath": "static/image/nav-icon/iconPark-landscape.png",
+			// 	"selectedIconPath": "static/image/nav-icon/iconPark-landscape Copy.png",
+			// 	"text": "游玩"
+			// },
 			{
 				"pagePath": "pages/find/find",
 				"iconPath": "static/image/nav-icon/antOutline-compass.png",
@@ -127,289 +129,238 @@
 					"navigationBarBackgroundColor": "#fff"
 				}
 
-			}
-		    ,{
-                    "path" : "food/fondMap",
-                    "style" :                                                                                    
-					{
-						"navigationBarTitleText": "美食地图",
-						"enablePullDownRefresh": false
-					}
-                
-                },
-				{
-				    "path" : "enter/cateringindustry",
-				    "style" :                                                                                    
-				    {
-				        "navigationBarTitleText": "餐饮",
-				        "enablePullDownRefresh": false
-				    }
-				    
-				}
-				,{
-				    "path" : "enter/hotel",
-				    "style" :                                                                                    
-				    {
-				        "navigationBarTitleText": "酒店",
-				        "enablePullDownRefresh": false
-				    }
-				    
-				}
-				,{
-				    "path" : "enter/homestay",
-				    "style" :                                                                                    
-				    {
-				        "navigationBarTitleText": "民宿",
-				        "enablePullDownRefresh": false
-				    }
-				    
-				}
-				,{
-				    "path" : "webview",
-				    "style" :                                                                                    
-					{
-						"navigationBarTitleText": "",
-						"enablePullDownRefresh": false
-					}
-				
-				}
-				,{
-				    "path" : "enter/myCateringdustry/index",
-				    "style" :                                                                                    
-					{
-						"navigationBarTitleText": "餐饮",
-						"enablePullDownRefresh": false
-					}
-				
-				}
-				,{
-				    "path" : "enter/enter",
-				    "style" :                                                                                    
-					{
-						"navigationBarTitleText": "入驻",
-						"enablePullDownRefresh": false,
-						"navigationStyle":"custom"
-					}
-				
-				}
-				,{
-				    "path" : "enter/myCateringdustry/addfood",
-				    "style" :                                                                                    
-					{
-						"navigationBarTitleText": "添加菜品",
-						"enablePullDownRefresh": false
-					}
-				
-				}
-				,{
-				    "path" : "enter/myCateringdustry/addGroupBuying",
-				    "style" :                                                                                    
-					{
-						"navigationBarTitleText": "添加团购",
-						"enablePullDownRefresh": false
-					}
-				
-				},
-				{
-				    "path" : "enter/myCateringdustry/addGroupBuyingNext",
-				    "style" :                                                                                    
-					{
-						"navigationBarTitleText": "添加团购",
-						"enablePullDownRefresh": false
-					}
-				
-				}
-				,{
-				    "path" : "enter/myCateringdustry/shopSetting/index",
-				    "style" :                                                                                    
-					{
-						"navigationBarTitleText": "设置",
-						"enablePullDownRefresh": false
-					}
-				
-				}
-				,{
-				    "path" : "enter/myCateringdustry/shopSetting/editShopInformation",
-				    "style" :                                                                                    
-					{
-						"navigationBarTitleText": "店铺信息",
-						"enablePullDownRefresh": false
-					}
-				
-				}
-				,{
-				    "path" : "enter/myCateringdustry/shopSetting/editShopImage",
-				    "style" :                                                                                    
-					{
-						"navigationBarTitleText": "店铺图片",
-						"enablePullDownRefresh": false
-					}
-				
-				}
-				,{
-				    "path" : "enter/myCateringdustry/shopSetting/editCertificate",
-				    "style" :                                                                                    
-					{
-						"navigationBarTitleText": "证照",
-						"enablePullDownRefresh": false
-					}
-				
-				}
-				,{
-				    "path" : "enter/myCateringdustry/shopSetting/editFoodClassify",
-				    "style" :                                                                                    
-					{
-						"navigationBarTitleText": "菜品分类",
-						"enablePullDownRefresh": false
-					}
-				
-				}
-				,{
-				    "path" : "enter/myCateringdustry/shopSetting/foodInfomation",
-				    "style" :                                                                                    
-					{
-						"navigationBarTitleText": "菜品",
-						"enablePullDownRefresh": false
-					}
-				
-				}
-				,{
-				    "path" : "enter/myCateringdustry/shopSetting/groupBuying",
-				    "style" :                                                                                    
-				{
-				    "navigationBarTitleText": "团购",
-				    "enablePullDownRefresh": false
-				}
-				
-				}
-				,{
-				    "path" : "enter/myCateringdustry/shopSetting/lookGroupBuying",
-				    "style" :                                                                                    
-					{
-						"navigationBarTitleText": "团购详情",
-						"enablePullDownRefresh": false
-					}
-				
-				}
-				,{
-				    "path" : "enter/myCateringdustry/shopSetting/saleroom",
-				    "style" :                                                                                    
-					{
-						"navigationBarTitleText": "销售记录",
-						"enablePullDownRefresh": false
-					}
-				
-				}
-				,{
-				    "path" : "enter/myHomestay/index",
-				    "style" :                                                                                    
-					{
-						"navigationBarTitleText": "民宿",
-						"enablePullDownRefresh": false
-					}
-				
-				}
-				,{
-				    "path" : "enter/myHomestay/add",
-				    "style" :                                                                                    
-					{
-						"navigationBarTitleText": "民宿",
-						"enablePullDownRefresh": false
-					}
-				
-				}
-				,{
-				    "path" : "enter/myHomestay/edit",
-				    "style" :                                                                                    
-					{
-						"navigationBarTitleText": "民宿",
-						"enablePullDownRefresh": false
-					}
-				
-				}
-				,{
-				    "path" : "enter/myHomestay/search",
-				    "style" :                                                                                    
-					{
-						"navigationBarTitleText": "搜索",
-						"enablePullDownRefresh": false
-					}
-				
-				}
-				,{
-				    "path" : "notice/noticedetail",
-				    "style" :                                                                                    
-					{
-						"navigationBarTitleText": "通知详情",
-						"enablePullDownRefresh": false
-					}
-				
-				},
-				{
-				    "path" : "notice/index",
-				    "style" :                                                                                    
-					{
-						"navigationBarTitleText": "通知",
-						"enablePullDownRefresh": false,
-						"navigationStyle":"custom"
-					}
-				
-				}
-				,{
-				    "path" : "my/bill",
-				    "style" :                                                                                    
-					{
-						"navigationBarTitleText": "账单",
-						"enablePullDownRefresh": false
-					}
-				
-				}
-				,{
-				    "path" : "my/my",
-				    "style" :                                                                                    
-					{
-						"navigationBarTitleText": "我的",
-						"enablePullDownRefresh": false,
-						"navigationStyle":"custom"
-					}
-				
-				}
-				,{
-				    "path" : "enter/myCateringdustry/edit",
-				    "style" :                                                                                    
-					{
-						"navigationBarTitleText": "店铺信息",
-						"enablePullDownRefresh": false
-					}
-				}
-                ,{
-                    "path" : "food/detailMap",
-                    "style" :                                                                                    
-                {
-                    "navigationBarTitleText": "店铺详情",
-                    "enablePullDownRefresh": false
-                }
-                
-                }
-				,{
-				    "path" : "login/index",
-				    "style" :                                                                                    
-				{
-				    "navigationBarTitleText": "登录",
-				    "enablePullDownRefresh": false
+			}, {
+				"path": "food/fondMap",
+				"style": {
+					"navigationBarTitleText": "美食地图",
+					"enablePullDownRefresh": false
 				}
-				
+
+			},
+			{
+				"path": "enter/cateringindustry",
+				"style": {
+					"navigationBarTitleText": "餐饮",
+					"enablePullDownRefresh": false
 				}
-                ,{
-                    "path" : "my/mypublish",
-                    "style" :                                                                                    
-                {
-                    "navigationBarTitleText": "我的发布",
-                    "enablePullDownRefresh": false
-                }
-                
-                }
-                ,{
+
+			}, {
+				"path": "enter/hotel",
+				"style": {
+					"navigationBarTitleText": "酒店",
+					"enablePullDownRefresh": false
+				}
+
+			}, {
+				"path": "enter/homestay",
+				"style": {
+					"navigationBarTitleText": "民宿",
+					"enablePullDownRefresh": false
+				}
+
+			}, {
+				"path": "webview",
+				"style": {
+					"navigationBarTitleText": "",
+					"enablePullDownRefresh": false
+				}
+
+			}, {
+				"path": "enter/myCateringdustry/index",
+				"style": {
+					"navigationBarTitleText": "餐饮",
+					"enablePullDownRefresh": false
+				}
+
+			}, {
+				"path": "enter/enter",
+				"style": {
+					"navigationBarTitleText": "入驻",
+					"enablePullDownRefresh": false,
+					"navigationStyle": "custom"
+				}
+
+			}, {
+				"path": "enter/myCateringdustry/addfood",
+				"style": {
+					"navigationBarTitleText": "添加菜品",
+					"enablePullDownRefresh": false
+				}
+
+			}, {
+				"path": "enter/myCateringdustry/addGroupBuying",
+				"style": {
+					"navigationBarTitleText": "添加团购",
+					"enablePullDownRefresh": false
+				}
+
+			},
+			{
+				"path": "enter/myCateringdustry/addGroupBuyingNext",
+				"style": {
+					"navigationBarTitleText": "添加团购",
+					"enablePullDownRefresh": false
+				}
+
+			}, {
+				"path": "enter/myCateringdustry/shopSetting/index",
+				"style": {
+					"navigationBarTitleText": "设置",
+					"enablePullDownRefresh": false
+				}
+
+			}, {
+				"path": "enter/myCateringdustry/shopSetting/editShopInformation",
+				"style": {
+					"navigationBarTitleText": "店铺信息",
+					"enablePullDownRefresh": false
+				}
+
+			}, {
+				"path": "enter/myCateringdustry/shopSetting/editShopImage",
+				"style": {
+					"navigationBarTitleText": "店铺图片",
+					"enablePullDownRefresh": false
+				}
+
+			}, {
+				"path": "enter/myCateringdustry/shopSetting/editCertificate",
+				"style": {
+					"navigationBarTitleText": "证照",
+					"enablePullDownRefresh": false
+				}
+
+			}, {
+				"path": "enter/myCateringdustry/shopSetting/editFoodClassify",
+				"style": {
+					"navigationBarTitleText": "菜品分类",
+					"enablePullDownRefresh": false
+				}
+
+			}, {
+				"path": "enter/myCateringdustry/shopSetting/foodInfomation",
+				"style": {
+					"navigationBarTitleText": "菜品",
+					"enablePullDownRefresh": false
+				}
+
+			}, {
+				"path": "enter/myCateringdustry/shopSetting/groupBuying",
+				"style": {
+					"navigationBarTitleText": "团购",
+					"enablePullDownRefresh": false
+				}
+
+			}, {
+				"path": "enter/myCateringdustry/shopSetting/lookGroupBuying",
+				"style": {
+					"navigationBarTitleText": "团购详情",
+					"enablePullDownRefresh": false
+				}
+
+			}, {
+				"path": "enter/myCateringdustry/shopSetting/saleroom",
+				"style": {
+					"navigationBarTitleText": "销售记录",
+					"enablePullDownRefresh": false
+				}
+
+			}, {
+				"path": "enter/myHomestay/index",
+				"style": {
+					"navigationBarTitleText": "民宿",
+					"enablePullDownRefresh": false
+				}
+
+			}, {
+				"path": "enter/myHomestay/add",
+				"style": {
+					"navigationBarTitleText": "民宿",
+					"enablePullDownRefresh": false
+				}
+
+			}, {
+				"path": "enter/myHomestay/edit",
+				"style": {
+					"navigationBarTitleText": "民宿",
+					"enablePullDownRefresh": false
+				}
+
+			}, {
+				"path": "enter/myHomestay/search",
+				"style": {
+					"navigationBarTitleText": "搜索",
+					"enablePullDownRefresh": false
+				}
+
+			}, {
+				"path": "notice/noticedetail",
+				"style": {
+					"navigationBarTitleText": "通知详情",
+					"enablePullDownRefresh": false
+				}
+
+			},
+			{
+				"path": "notice/index",
+				"style": {
+					"navigationBarTitleText": "通知",
+					"enablePullDownRefresh": false,
+					"navigationStyle": "custom"
+				}
+
+			}, {
+				"path": "my/bill",
+				"style": {
+					"navigationBarTitleText": "账单",
+					"enablePullDownRefresh": false
+				}
+
+			}, {
+				"path": "my/my",
+				"style": {
+					"navigationBarTitleText": "我的",
+					"enablePullDownRefresh": false,
+					"navigationStyle": "custom"
+				}
+
+			}, {
+				"path": "enter/myCateringdustry/edit",
+				"style": {
+					"navigationBarTitleText": "店铺信息",
+					"enablePullDownRefresh": false
+				}
+			}, {
+				"path": "food/detailMap",
+				"style": {
+					"navigationBarTitleText": "店铺详情",
+					"enablePullDownRefresh": false
+				}
+
+			}, {
+				"path": "login/index",
+				"style": {
+					"navigationBarTitleText": "登录",
+					"enablePullDownRefresh": false
+				}
+
+			}, {
+				"path": "cxTable",
+				"style": {
+					"navigationBarTitleText": "潮汐表"
+
+				}
+			},
+			{
+				"path": "my/mypublish",
+				"style": {
+					"navigationBarTitleText": "我的发布",
+					"enablePullDownRefresh": false
+				}
+
+			}
+
+		    ,{
                     "path" : "find/edit",
                     "style" :                                                                                    
                 {

+ 11 - 5
uni_applet/pages/find/find.vue

@@ -24,7 +24,7 @@
 			<mescroll-uni :up="upOption" :down="downOption" ref="mescrollRef" @init="mescrollInit" @up="upCallback"
 				@down="downCallback" :top="108">
 				<u-swiper :list="fileList" autoplay :height='height' imgMode='aspectFill' radius='0' interval='5000'
-					:circular="true" @change="e => current = e.current" @click="click">
+					:circular="true" @change="e => current = e.current" @click="swiperClick">
 					<view slot="indicator" class="indicator">
 						<view class="indicator__dot" v-for="(item, index) in fileList" :key="index"
 							:class="[index === current && 'indicator__dot--active']">
@@ -153,6 +153,15 @@
 			}
 		},
 		methods: {
+			swiperClick(e){
+				console.log(e)
+				if(e==0){
+					uni.navigateTo({
+						url:"/pageA/cxTable"
+					})
+				}
+				
+			},
 			toShopDetail(val){
 				console.log(val)
 				uni.navigateTo({
@@ -317,12 +326,9 @@
 				// }
 			},
 			add() {
-				console.log(11111)
 				if (!uni.getStorageSync("userInfo").phone) {
-					console.log(11111)
 					this.$refs.loginpopup.open()
 				} else {
-					console.log(22222)
 					uni.navigateTo({
 						url: '/pageA/find/createLifeService'
 					})
@@ -486,7 +492,7 @@
 		position: fixed;
 		right: 0;
 		bottom: 10px;
-		z-index:2;
+		z-index: 2;
 	}
 
 	.applet-colors-tianjia2 {

+ 6 - 3
uni_applet/pages/food/food.vue

@@ -52,7 +52,7 @@
 
 						</view>
 					</view>
-					<view class="tag-type flex">
+					<view class="tag-type1 flex">
 						<text class="text" v-for='item1 in item.labels'> {{item1}}</text>
 					</view>
 					<view class='address flex justify-space-between'>
@@ -507,6 +507,7 @@
 			// margin-top: 30rpx;
 			width: 100%;
 			color: #393733;
+			// margin-top: 20rpx;
 		}
 		.img{
 			margin: 10rpx;
@@ -577,9 +578,11 @@
 			font-size: 24rpx;
 		}
 	}
-
+	.tag-type1{
+		margin: 20rpx 0
+	}
 	.tag-type {
-		margin: 20rpx 0;
+		// margin: 20rpx 0;
 		.text {
 			border-radius: 4px;
 			background-color: #FDF2E5;

+ 2 - 2
uni_applet/pages/my/my.vue

@@ -28,7 +28,7 @@
 			
 		</view>
 		<view class="wrap">
-			<view class='orderList'>
+		<!-- 	<view class='orderList'>
 				<view class="orderItem align-item-center">
 					<view style='position:relative;'>
 						<u-icon name="home-fill" color="#2979ff" size="28"></u-icon>
@@ -58,7 +58,7 @@
 					<view class='orderName'>门票订单</view>
 					
 				</view>
-			</view>
+			</view> -->
 			<view style='width:100%;'>
 				<u-cell-group :border='false'>
 					<u-cell

BIN
uni_applet/static/image/cxb.png


BIN
uni_applet/static/image/today.png