Browse Source

首页接口更改,资讯列表,资讯详情接口对接,优惠券列表页面编写,开发票页面编写,个人信息页面编写

gcz 1 year ago
parent
commit
464d94552c
10 changed files with 673 additions and 65 deletions
  1. 2 13
      center/center.vue
  2. 315 0
      center/invoice.vue
  3. 15 8
      center/memberinfo.vue
  4. 253 0
      center/mycoupon.vue
  5. 16 0
      common/apiurl.js
  6. 1 1
      components/tabbar.vue
  7. 14 0
      pages.json
  8. 13 17
      pages/index/index.vue
  9. 15 16
      pages/news.vue
  10. 29 10
      pages/newsdetails.vue

+ 2 - 13
center/center.vue

@@ -75,15 +75,14 @@
 				memberInfo:{},
 				tools:[
 					{name:'领券中心',url:'/center/mycoupon',ico:this.$commonConfig.staticUrl+'/img/center-coupon.png',checkauth:false},
-					{name:'开具发票',url:'center/addrlist',ico:this.$commonConfig.staticUrl+'/img/center-ticket.png',checkauth:true},
-					{name:'客服热线',url:'center/addrlist',ico:this.$commonConfig.staticUrl+'/img/center-call.png',checkauth:true,phone:'13682266542'},
+					{name:'开具发票',url:'center/invoice',ico:this.$commonConfig.staticUrl+'/img/center-ticket.png',checkauth:true},
+					{name:'客服热线',url:'',ico:this.$commonConfig.staticUrl+'/img/center-call.png',checkauth:true,phone:'13682266542'},
 				]
 			}
 		},
 		onShow() {	
 			if(this.vuex_member_info.name){
 				this.getMemberInfo();
-				this.statisticsOrder();
 			}
 			
 		},
@@ -133,16 +132,6 @@
 				}
 				
 			},
-			statisticsOrder(){
-				this.$u.api.statisticsOrder().then(res=>{
-					let data = res.data || {};
-					this.orderBadge = Object.assign(this.orderBadge,data)
-					// console.log('statisticsOrder',res.data);
-					// console.log('this.orderBadge',this.orderBadge);
-					}).catch(err=>{
-					console.log('memberInfo',err.data);
-				})
-			},
 			goLogin(){
 				uni.setStorage({
 					key: 'backUrl',

+ 315 - 0
center/invoice.vue

@@ -0,0 +1,315 @@
+<template>
+	<view class="pages">
+		<view class="" :style="{height: navHeight+'px' }"></view>
+		<view class="navbar-box">
+			<u-navbar title="开具发票" :safeAreaInsetTop="true" @leftClick="leftClick" :titleStyle="{color:'#fff'}" leftIconColor="#fff" bgColor="#EF1818"></u-navbar>
+		</view>
+		<view class="page-wrap">
+			<mescroll-body class="" ref="mescrollRef" @init="mescrollInit" @down="downCallback" @up="upCallback">
+				<!-- :down="downOption" :up="upOption" -->
+				<view class="list">
+					<u-checkbox-group placement="column" @change="checkboxChange" >
+					<view v-for="(item,index) in dataList" class="list-item u-flex" :key="item.id">
+						<view class="left">
+							<u-checkbox shape="circle" :disabled="item.quantity>item.stock" activeColor="#ED0000" :key="index" :name="item.name" :checked="item.checked" @change="toggleCheck(index)" class="checkbox" />
+						</view>
+						<view class="right">
+							<view class="order-number">订单号:360123456789079797</view>
+							<view class="info u-flex">
+								<image class="img" :src="item.showImg||staticUrl+'/img/newsdetails-banner.png'"></image>
+								<view class="text">
+									<view class="name">《伟大转折》-【成人票】</view>
+									<view class="time">2023-11–03 14:00-16:00</view>
+									<view class="position">5排6座</view>
+									<view class="statistics">
+										<text>共1张</text>
+										<text class="label">合计:</text>
+										<text class="price">¥120.00</text>
+									</view>
+								</view>
+							</view>
+						</view>
+					</view>
+					</u-checkbox-group>
+				</view>
+			</mescroll-body>
+		</view>
+		<view class="page-bottom">
+			<view class="inner u-flex u-row-between">
+				<view class="left">
+					<u-checkbox-group @change="allCheckboxChange">
+						<u-checkbox shape="circle" :checked="allChecked" activeColor="#ED0000" :name="allCheckbox.name" label="全选"></u-checkbox>
+					</u-checkbox-group>
+				</view>
+				<view class="right u-flex">
+					<view class="total-price u-flex">
+						<text>合计:</text>
+						<text class="num">{{totalPrice}}</text>
+					</view>
+					<view class="btn active" v-if="totalPrice>0&&cansubmit" @click="submitorder">申请开票</view>
+					<view class="btn" v-else>申请开票</view>
+				</view>
+			</view>
+		</view>
+	</view>
+</template>
+
+<script>
+	import { systemInfo } from "@/mixin.js";
+	import MescrollMixin from "@/uni_modules/mescroll-uni/components/mescroll-uni/mescroll-mixins.js";
+	export default {
+		mixins: [MescrollMixin,systemInfo], // 使用mixin
+		data() {
+			return {
+				staticUrl:this.$commonConfig.staticUrl,
+				allCheckbox:{name: '全选'},
+				dataList:[
+					{name:'路线推荐',checked:false,pic:`${this.$commonConfig.staticUrl}/img/indexnav-luxian.png`,id:1},
+					{name:'路线推荐',checked:false,pic:`${this.$commonConfig.staticUrl}/img/indexnav-luxian.png`,id:2},
+				],
+			}
+		},
+		onShow() {
+		},
+		onLoad() {
+			this.getSystemInfo();
+
+		},
+		computed: {
+		    // 是否全选
+		    allChecked() {
+		        return this.dataList.every(item => item.checked)
+		    },
+		    // 商品合计价格
+		    selectGoods() {
+				let selectGoods = [];
+		        this.dataList.forEach(item => {
+		            if (item.checked) {
+		               selectGoods.push(item)
+		            }
+		        })
+		        return selectGoods
+		    },
+			totalPrice() {
+			  let that = this;
+			  return this.dataList.reduce((total, item) => {
+				if (item.checked) {
+					let price = null;
+					// if(that.vuex_member_info.priceType>1){
+					// 	price = item.vipPrice
+					// }else{
+					// 	price = item.salePrice
+					// }
+					price = item.levelPrice
+				  total += price * item.quantity;
+				}
+				return total;
+			  }, 0).toFixed(2);
+			}
+		},
+		methods: {
+			leftClick(e){
+				let pages = getCurrentPages();
+				if(pages.length==1){
+					uni.$u.route('/pages/index/index')
+				}else{
+					uni.navigateBack()
+				};
+			},
+			/*下拉刷新的回调, 重置列表为第一页 (此处可删,mixins已默认)
+			downCallback(){
+				this.mescroll.resetUpScroll();
+			},
+			/*上拉加载的回调*/
+			upCallback(page) {
+				// 此处可以继续请求其他接口
+				// if(page.num == 1){
+				// 	// 请求其他接口...
+				// }
+			
+				// 如果希望先请求其他接口,再触发upCallback,可参考以下写法
+				// if(!this.hasTypeId){
+				// 	this.mescroll.endErr();//没有接口暂时不调用
+				// 	return // 此处return,先获取xx
+				// }
+			
+				let pageNum = page.num; // 页码, 默认从1开始
+				let pageSize = page.size; // 页长, 默认每页10条
+			
+				let params = {
+					pageNum : page.num,
+					pageSize :  page.size,
+					status:this.status
+				}
+				// console.log('this.params',params);
+				this.$u.api.orderList(params).then(data => {
+					this.hasfetch = true;
+					console.log('data',JSON.parse(JSON.stringify(data)));
+					// 接口返回的当前页数据列表 (数组)
+					let curPageData = data.data.rows;
+					curPageData = curPageData.map( item =>{
+						item.checked = false
+						return  item
+					})
+					// console.log('curPageData',JSON.parse(JSON.stringify(curPageData)));
+					// 接口返回的当前页数据长度 (如列表有26个数据,当前页返回8个,则curPageLen=8)
+					let curPageLen = curPageData.length; 
+					// 接口返回的总页数 (如列表有26个数据,每页10条,共3页; 则totalPage=3)
+					// let totalPage =  data.data.data.totalPage; 
+					// 接口返回的总数据量(如列表有26个数据,每页10条,共3页; 则totalSize=26)
+					let totalSize = data.data.total; 
+					// 接口返回的是否有下一页 (true/false)
+					// let hasNext = data.xxx; 
+					// console.log('totalPage',totalPage,'curPageLen',curPageLen);
+					//设置列表数据
+					if(page.num == 1) this.dataList = []; //如果是第一页需手动置空列表
+					this.dataList = this.dataList.concat(curPageData); //追加新数据
+					// 请求成功,隐藏加载状态
+					//方法一(推荐): 后台接口有返回列表的总页数 totalPage
+					// this.mescroll.endByPage(curPageLen, totalPage); 
+					//方法二(推荐): 后台接口有返回列表的总数据量 totalSize
+					this.mescroll.endBySize(curPageLen, totalSize); 
+				}).catch(err => {
+					this.mescroll.endErr()
+					console.log(err)
+				});	
+			
+			},
+			/*若希望重新加载列表,只需调用此方法即可(内部会自动page.num=1,再主动触发up.callback)*/
+			reloadList() {
+				this.mescroll.resetUpScroll();
+			},
+			search(e){
+				this.reloadList();
+			},
+			checkboxChange(n){
+				// console.log('checkboxChange',n);
+			},
+			toggleCheck(index) {
+				console.log('toggleCheck',index);
+			    this.dataList[index].checked = !this.dataList[index].checked
+			},
+			checkboxClick(){
+				console.log('checkboxClick',this.allChecked);
+				this.dataList.forEach(item => {
+					if(item.quantity<=item.stock){
+						item.checked = !this.allChecked
+					}
+				})
+			},
+			// 切换全选状态
+			allCheckboxChange(n){
+				// console.log('allCheckboxChange',n[0]);
+				// console.log('allCheckboxChange',n);
+				let selectAll = n[0]?true:false;
+				this.dataList.forEach(item => {
+					item.checked = selectAll
+				});
+				 console.log('selectGoods',this.selectGoods);
+			},
+
+		}
+	}
+</script>
+<style>
+	page{background-color: #F7F7F9;}
+</style>
+<style lang="scss" scoped>
+.list-item{
+	background: #FFFFFF;
+	box-shadow: 0rpx 2rpx 12rpx 0rpx rgba(221,221,221,0.5);
+	border-radius: 20rpx;
+	margin-bottom: 24rpx;
+	padding: 34rpx 32rpx 50rpx 20rpx;
+	.right{
+		flex: 1;
+		padding-left: 24rpx;
+		.order-number{
+			font-size: 24rpx;
+			font-weight: 400;
+			color: #7F7F7F;
+			line-height: 36rpx;
+			margin-bottom: 36rpx;
+		}
+		.info{
+			.img{
+				width: 180rpx;
+				height: 160rpx;
+			}
+			.text{
+				font-size: 24rpx;
+				font-weight: 400;
+				color: #7F7F7F;
+				padding-left: 26rpx;
+				.name{
+					font-size: 28rpx;
+					font-weight: bold;
+					color: #363636;
+					margin-bottom: 20rpx;
+				}
+				.time{
+					margin-bottom: 20rpx;
+				}
+				.position{
+					margin-bottom: 20rpx;
+				}
+				.statistics{
+					text-align: right;
+				}
+				.label{
+					font-size: 24rpx;
+					font-weight: 400;
+					color: #363636;
+					margin-left: 10rpx;
+				}
+				.price{
+					font-size: 32rpx;
+					font-weight: bold;
+					color: #ED0000;
+				}
+			}
+		}
+	}
+}
+.page-bottom{
+	position: relative;
+	z-index: 1001;
+	height: 98rpx;
+	padding: 24rpx 20rpx 50rpx;
+	.inner{
+		position: fixed;
+		background-color: #fff;
+		height: 98rpx;
+		left: 0;
+		right: 0;
+		bottom: 0;
+		padding: 24rpx 20rpx 50rpx;
+		box-shadow: 0rpx -4rpx 12rpx 0rpx rgba(215,215,215,0.5);
+		.total-price{
+			font-size: 28rpx;
+			font-weight: 400;
+			color: #313131;
+			margin-right: 32rpx;
+			.num{
+				font-size: 40rpx;
+				font-weight: bold;
+				color: #ED0000;
+			}
+		}
+		.btn{
+			font-size: 28rpx;
+			height: 80rpx;
+			line-height: 80rpx;
+			border-radius: 50rpx;
+			padding: 0 50rpx;
+			background-color: #eee;
+			color: #333;
+			text-align: center;
+			&.active{
+				background: linear-gradient(90deg, #FF7979 0%, #ED0000 100%);
+				color: #fff;
+			}
+		}
+	}
+}
+</style>

+ 15 - 8
center/memberinfo.vue

@@ -8,7 +8,8 @@
 		>
 		</u-navbar>
 		<view class="page-wrap">
-			<u-cell-group>
+			<view class="cell-title">个人信息</view>
+			<u-cell-group :border="false" :customStyle="{background:'#fff','border-radius':'20rpx'}">
 				<!-- <u-cell  title="头像">
 					<u-avatar slot="right-icon" :src="memberInfo.avatar" size="80rpx"></u-avatar>
 				</u-cell> -->
@@ -28,11 +29,11 @@
 						></u-upload>
 					</view>
 				</view>
-				<u-cell title="昵称" @click="nameShow=true" :value="memberInfo.name"></u-cell>
-				<u-cell title="性别" @click="handleChangeSex" :value="memberInfo.sex|filterSex"></u-cell>
-				<u-cell title="生日" :value="memberInfo.birthdayTime||'未设置'" @click="handleChangeBirthday" :isLink="true"></u-cell>
-				<u-cell title="会员等级" :value="memberInfo.levelName"></u-cell>
-				<u-cell title="实名制认证" @click="factorAuth" :value="memberInfo.isAuth==1?'已认证':'去认证'"></u-cell>
+				<u-cell title="昵称" @click="nameShow=true" :value="memberInfo.name" :border="false"></u-cell>
+				<!-- <u-cell title="性别" @click="handleChangeSex" :value="memberInfo.sex|filterSex"></u-cell> -->
+				<!-- <u-cell title="生日" :value="memberInfo.birthdayTime||'未设置'" @click="handleChangeBirthday" :isLink="true"></u-cell> -->
+				<!-- <u-cell title="会员等级" :value="memberInfo.levelName"></u-cell> -->
+				<!-- <u-cell title="实名制认证" @click="factorAuth" :value="memberInfo.isAuth==1?'已认证':'去认证'"></u-cell> -->
 			</u-cell-group>
 			<u-button text="取消登录" type="warning" @click="logOut" :customStyle="{'margin-top': '120rpx'}"></u-button>
 			<u-datetime-picker
@@ -110,7 +111,7 @@
 				// this.getMemberInfo()
 			},
 			getMemberInfo(){
-				this.$u.api.memberInfo({id:this.vuex_user_info.userid}).then(res=>{
+				this.$u.api.memberInfo({id:this.vuex_user_info.userId}).then(res=>{
 					this.memberInfo = res.data;
 					this.avatar =  res.data.avatar;
 					// console.log('memberInfo',this.memberInfo);
@@ -220,10 +221,16 @@
 </script>
 <style>
 page{
-	background-color: #fff;
+	background-color: #F7F7F9;
 }
 </style>
 <style lang="scss" scoped>
+.cell-title{
+	font-size: 28rpx;
+	font-weight: 400;
+	color: #7F7F7F;
+	margin-bottom: 34rpx;
+}
 .avatar{
 	padding: 10px 15px;
 	font-size: 15px;

+ 253 - 0
center/mycoupon.vue

@@ -0,0 +1,253 @@
+<template>
+	<view class="pages">
+		<u-navbar
+			title="我的优惠券"
+			:placeholder="true"
+			:autoBack="false"
+			 @leftClick="leftClick"
+			 :safeAreaInsetTop="true"
+		>
+		</u-navbar>
+		<view class="tabs-wrap">
+			<view class="inner">
+				<u-tabs
+					:list="tabsArr"  
+					@click="tabsClick"
+					lineColor="#ED0000" 
+					lineWidth="82rpx"
+					:activeStyle="{color: '#2D2D2D',fontWeight: 'bold'}"
+					itemStyle="width:33%; height: 46px;box-sizing:border-box"
+				>
+				</u-tabs>
+			</view>
+		</view>
+		<view class="page-wrap">
+			<mescroll-body class="" ref="mescrollRef" @init="mescrollInit" @down="downCallback" @up="upCallback">
+				<!-- :down="downOption" :up="upOption" -->
+				<view class="list">
+					<view v-for="(item,index) in dataList" class="list-item u-flex" :class="{hotel:index==1}" :key="item.id" :style="{backgroundImage:`url(${staticUrl}/img/coupon-bg.png)`}">
+						<view class="left u-flex u-row-center u-col-top">
+							<text class="icon">¥</text>
+							<text class="num">30</text>
+						</view>
+						<view class="right u-flex u-row-between">
+							<view class="text">
+								<view class="name">演出购票折扣券</view>
+								<view class="time">有限期:2023.10.22-2023.10.22</view>
+								<view class="rule u-flex">
+									使用规则
+									<u-icon name="arrow-right" color="#D56442" size="30rpx"></u-icon>
+								</view>
+							</view>
+							<view class="btn">去使用</view>
+						</view>
+					</view>
+				</view>
+			</mescroll-body>
+		</view>
+	</view>
+</template>
+
+<script>
+	// 引入mescroll-mixins.js
+	import MescrollMixin from "@/uni_modules/mescroll-uni/components/mescroll-uni/mescroll-mixins.js";
+	export default {
+		mixins: [MescrollMixin], // 使用mixin
+		components: {
+			
+		},
+		data() {
+			return {
+				staticUrl:this.$commonConfig.staticUrl,
+				// // 下拉刷新的配置(可选, 绝大部分情况无需配置)
+				// downOption: {
+				// },
+				// // 上拉加载的配置(可选, 绝大部分情况无需配置)
+				// upOption: {
+				// 	page: {
+				// 		size: 10 // 每页数据的数量,默认10
+				// 	},
+				// 	noMoreSize: 5, // 配置列表的总数量要大于等于5条才显示'-- END --'的提示
+				// 	empty: {
+				// 		tip: '暂无相关数据'
+				// 	}
+				// },
+				params:{
+				},
+				dataList:[
+					{name:'路线推荐',pic:`${this.$commonConfig.staticUrl}/img/indexnav-luxian.png`,id:1},
+					{name:'路线推荐',pic:`${this.$commonConfig.staticUrl}/img/indexnav-luxian.png`,id:1},
+				],
+				tabsArr:[
+					{name:'待使用',status:0},
+					{name:'已使用',status:1},
+					{name:'已过期',status:2}
+				],
+				status:0,
+				
+			}
+		},
+		onShow() {
+		},
+		onLoad() {
+
+		},
+		methods: {
+			leftClick(e){
+				let pages = getCurrentPages();
+				if(pages.length==1){
+					uni.$u.route('/pages/index/index')
+				}else{
+					uni.navigateBack()
+				};
+			},
+			/*下拉刷新的回调, 重置列表为第一页 (此处可删,mixins已默认)
+			downCallback(){
+				this.mescroll.resetUpScroll();
+			},
+			/*上拉加载的回调*/
+			upCallback(page) {
+				// 此处可以继续请求其他接口
+				// if(page.num == 1){
+				// 	// 请求其他接口...
+				// }
+			
+				// 如果希望先请求其他接口,再触发upCallback,可参考以下写法
+				// if(!this.hasTypeId){
+				// 	this.mescroll.endErr();//没有接口暂时不调用
+				// 	return // 此处return,先获取xx
+				// }
+			
+				let pageNum = page.num; // 页码, 默认从1开始
+				let pageSize = page.size; // 页长, 默认每页10条
+			
+				let params = {
+					pageNum : page.num,
+					pageSize :  page.size,
+					status:this.status
+				}
+				// console.log('this.params',params);
+				this.$u.api.orderList(params).then(data => {
+					this.hasfetch = true;
+					console.log('data',JSON.parse(JSON.stringify(data)));
+					// 接口返回的当前页数据列表 (数组)
+					let curPageData = data.data.rows;
+					// console.log('curPageData',JSON.parse(JSON.stringify(curPageData)));
+					// 接口返回的当前页数据长度 (如列表有26个数据,当前页返回8个,则curPageLen=8)
+					let curPageLen = curPageData.length; 
+					// 接口返回的总页数 (如列表有26个数据,每页10条,共3页; 则totalPage=3)
+					// let totalPage =  data.data.data.totalPage; 
+					// 接口返回的总数据量(如列表有26个数据,每页10条,共3页; 则totalSize=26)
+					let totalSize = data.data.total; 
+					// 接口返回的是否有下一页 (true/false)
+					// let hasNext = data.xxx; 
+					// console.log('totalPage',totalPage,'curPageLen',curPageLen);
+					//设置列表数据
+					if(page.num == 1) this.dataList = []; //如果是第一页需手动置空列表
+					this.dataList = this.dataList.concat(curPageData); //追加新数据
+					// 请求成功,隐藏加载状态
+					//方法一(推荐): 后台接口有返回列表的总页数 totalPage
+					// this.mescroll.endByPage(curPageLen, totalPage); 
+					//方法二(推荐): 后台接口有返回列表的总数据量 totalSize
+					this.mescroll.endBySize(curPageLen, totalSize); 
+				}).catch(err => {
+					this.mescroll.endErr()
+					console.log(err)
+				});	
+			
+			},
+			/*若希望重新加载列表,只需调用此方法即可(内部会自动page.num=1,再主动触发up.callback)*/
+			reloadList() {
+				this.mescroll.resetUpScroll();
+			},
+			search(e){
+				this.reloadList();
+			},
+			tabsClick(e){
+				console.log('tabsClick',e);
+				this.status = e.status;
+				this.reloadList();
+				// this.tabsIndex = e.index;
+			},
+		}
+	}
+</script>
+
+<style lang="scss" scoped>
+.tabs-wrap{
+	position: relative;
+	margin-bottom: 24rpx;
+	box-shadow: 0rpx 4rpx 8rpx 0rpx rgba(226,226,226,0.5);
+}
+.list{
+	.list-item{
+		width: 100%;
+		height: 158rpx;
+		background-repeat: no-repeat;
+		background-size: 100% 100%;
+		margin-bottom: 24rpx;
+		.left{
+			width: 190rpx;
+			.icon{
+				width: 26rpx;
+				height: 26rpx;
+				line-height: 26rpx;
+				text-align: center;
+				font-size: 10px;
+				color: #fff;
+				border-radius: 50%;
+				background: linear-gradient(360deg, #ED0000 0%, #F27C7D 100%);
+			}
+			.num{
+				font-size: 100rpx;
+				font-family: Helvetica, Helvetica;
+				font-weight: bold;
+				color: #000000;
+				background: linear-gradient(180deg, #F28082 0%, #ED0000 100%);
+				-webkit-background-clip: text;
+				-webkit-text-fill-color: transparent;
+			}
+		}
+		.right{
+			flex: 1;
+			padding: 32rpx 20rpx;
+			.text{
+				padding-left: 10rpx;
+				color: #D56442;
+				font-size: 20rpx;
+				font-weight: 400;
+			}
+			.name{
+				font-size: 28rpx;
+				font-weight: bold;
+				color: #C5412B;
+				margin-bottom: 16rpx;
+			}
+			.time{
+				margin-bottom: 16rpx;
+			}
+			.btn{
+				height: 50rpx;
+				line-height: 50rpx;
+				background: #ED0000;
+				border-radius: 25rpx;
+				font-size: 24rpx;
+				font-weight: bold;
+				color: #FFFFFF;
+				padding: 0 24rpx;
+			}
+		}
+		&.hotel{
+			.num{
+				background: linear-gradient(180deg, #F77941 0%, #E84816 100%);
+				background: linear-gradient(180deg, #F77941 0%, #E84816 100%);
+				-webkit-background-clip: text;
+				-webkit-text-fill-color: transparent;
+			}
+			.icon{
+				background: linear-gradient(360deg, #E84917 0%, #F97E45 100%);
+			}
+		}
+	}
+}
+</style>

+ 16 - 0
common/apiurl.js

@@ -42,6 +42,22 @@ const apiurl = {
 		url: '/system/client/index',
 		type: 'get'
 	},
+	// 分页查询资讯
+	newsList: {
+		url: '/system/sysInformation/pageList',
+		type: 'get'
+	},
+	// ID获取资讯详情
+	newsdetails: {
+		url: '/system/sysInformation/selectById',
+		type: 'get'
+	},
+	// 海报二维码
+	performQrcode: {
+		url: '/merchant/merchantPerform/performQrcode',
+		type: 'get'
+	},
+	
 	
 	
 	

+ 1 - 1
components/tabbar.vue

@@ -94,7 +94,7 @@ export default {
 			// 	navType: 'navigateTo'
 			//   }
 			// },
-			1: '/shopping/shoppingindex',
+			1: '/center/order',
 			// 2: '/shopping/shoppingindex',
 			2: '/center/center'
 		  };

+ 14 - 0
pages.json

@@ -81,6 +81,20 @@
 						"navigationBarTitleText": "我的优惠券",
 						"navigationStyle": "custom"
 					}
+				},
+				{
+					"path": "invoice",
+					"style": {
+						"navigationBarTitleText": "开具发票",
+						"navigationStyle": "custom"
+					}
+				},
+				{
+					"path": "order",
+					"style": {
+						"navigationBarTitleText": "订单",
+						"navigationStyle": "custom"
+					}
 				}
 			]
 		}

+ 13 - 17
pages/index/index.vue

@@ -38,7 +38,7 @@
 								</view>
 								<view class="btn" @click="bookticket(item)">立即预定</view>
 							</view>
-							<view class="share" @click="openShare">
+							<view class="share" @click="getPoster(item)">
 								<image class="icon" :src="staticUrl+'/img/share-ico.png'" ></image>
 							</view>
 						</view>
@@ -60,12 +60,12 @@
 			<view class="news">
 				<u-scroll-list :indicator="false">
 					<view class="item" v-for="(item, index) in newsList" @click="newsClick(item)" :key="index">
-						<image class="img" :src="item.imgUrl"></image>
+						<image class="img" :src="item.showImg||staticUrl+'/img/newsdetails-banner.png'"></image>
 						<view class="text">
-							<view class="name">{{item.name}}</view>
-							<view class="con u-line-1">{{item.con}}</view>
+							<view class="name u-line-1">{{item.title}}</view>
+							<view class="con u-line-1">{{item.centent}}</view>
 							<view class="time u-flex u-row-between">
-								<view class="left">{{item.time}}</view>
+								<view class="left">{{$u.timeFormat(item.onlineTime, 'yyyy-mm-dd')}}</view>
 								<image class="icon" :src="staticUrl+'/img/arrow-right-ico.png'" ></image>
 							</view>
 						</view>
@@ -119,11 +119,7 @@
 				theatreList:[],//剧院信息列表
 				bannerCurrent: 0,
 				isblur:false,
-				newsList:[
-					{name:'资讯标题',con:'11月12日,以“打造特色红色文化...',time:'2023-11-12',imgUrl:'https://unsplash.it/474/170?id=1'},
-					{name:'资讯标题',con:'11月12日,以“打造特色红色文化...',time:'2023-11-12',imgUrl:'https://unsplash.it/474/170?id=2'},
-					{name:'资讯标题',con:'11月12日,以“打造特色红色文化...',time:'2023-11-12',imgUrl:'https://unsplash.it/474/170?id=3'},
-				],
+				newsList:[],//资讯
 				shareShow:false,
 				posterShow:false,
 				posterStyle:{},
@@ -178,9 +174,10 @@
 			},
 			getClientIndex(){
 				this.$u.api.clientIndex().then(res=>{
-					console.log('res',res);
+					// console.log('res',res);
 					this.bannerList = res.data.advList;
-					this.theatreList = res.data.theatreList;
+					this.theatreList = res.data.performList;
+					this.newsList = res.data.informationList;
 				}).catch(err=>{
 					console.log('getClientIndex',err.data);
 				})
@@ -203,10 +200,10 @@
 				this.shareShow = true;
 			},
 			// 海报相关开始
-			getPoster(){
+			getPoster(item){
 				this.posterShow = true;
 				this.shareShow = false;
-				this.$u.api.getPoster({goodsId:this.id}).then(res=>{
+				this.$u.api.performQrcode({performId:item.id}).then(res=>{
 					this.posterSrc = res.data.imageUrl;
 					// console.log('getPoster',res.data);
 				}).catch(err=>{
@@ -376,10 +373,10 @@ $pagegap:32rpx;
 			position: relative;
 			&:before{
 				content: '';
-				width: calc( 100% - 26rpx );
+				width: calc( 100% - 32rpx );
 				height: 1px;
 				position: absolute;
-				left: 26rpx;
+				left: 20rpx;
 				top: -2rpx;
 				border-top: 4rpx dashed #931E0C;
 			}
@@ -450,7 +447,6 @@ $pagegap:32rpx;
 				font-size: 28rpx;
 				font-weight: bold;
 				color: #333333;
-				line-height: 22rpx;
 				margin-bottom: 12rpx;
 			}
 			.con{

+ 15 - 16
pages/news.vue

@@ -23,16 +23,16 @@
 			</u-search>
 		</view>
 		<view class="page-wrap">
-			<mescroll-body class="" ref="mescrollRef" @init="mescrollInit" @down="downCallback" @up="upCallback">
+			<mescroll-body class="" ref="mescrollRef" @init="mescrollInit" @down="downCallback" @up="upCallback" :up="upOption">
 				<!-- :down="downOption" :up="upOption" -->
 				<view class="list">
 					<view v-for="(item,index) in dataList" class="item u-flex" :class="{ show: show }" @click="itemClick(item)" :key="item.id">
 						<view class="text">
 							<view class="title u-line-1">{{ item.title }}</view>
-							<view class="con u-line-2">{{ item.title }}</view>
-							<view class="time">{{ item.title }}</view>
+							<view class="con u-line-2">{{ item.centent }}</view>
+							<view class="time">{{ $u.timeFormat(item.onlineTime, 'yyyy-mm-dd') }}</view>
 						</view>
-						<image class="img" :src="item.imgUrl" mode=""></image>
+						<image class="img" :src="item.mainImg||staticUrl+'/img/newsdetails-banner.png'" mode=""></image>
 					</view>
 				</view>
 			</mescroll-body>
@@ -55,15 +55,15 @@
 				// downOption: {
 				// },
 				// // 上拉加载的配置(可选, 绝大部分情况无需配置)
-				// upOption: {
-				// 	page: {
-				// 		size: 10 // 每页数据的数量,默认10
-				// 	},
-				// 	noMoreSize: 5, // 配置列表的总数量要大于等于5条才显示'-- END --'的提示
-				// 	empty: {
-				// 		tip: '暂无相关数据'
-				// 	}
-				// },
+				upOption: {
+					page: {
+						size: 10 // 每页数据的数量,默认10
+					},
+					noMoreSize: 5, // 配置列表的总数量要大于等于5条才显示'-- END --'的提示
+					empty: {
+						tip: '暂无相关资讯,请重新搜索'
+					}
+				},
 				params:{
 					keyword:''
 				},
@@ -129,9 +129,9 @@
 					title:this.params.keyword
 				}
 				// console.log('this.params',params);
-				this.$u.api.introductionList(params).then(data => {
+				this.$u.api.newsList(params).then(data => {
 					this.hasfetch = true;
-					console.log('data',JSON.parse(JSON.stringify(data)));
+					// console.log('data',JSON.parse(JSON.stringify(data)));
 					// 接口返回的当前页数据列表 (数组)
 					let curPageData = data.data.rows;
 					// console.log('curPageData',JSON.parse(JSON.stringify(curPageData)));
@@ -207,7 +207,6 @@
 				font-size: 28rpx;
 				font-weight: bold;
 				color: #333333;
-				line-height: 22rpx;
 				margin-bottom: 16rpx;
 			}
 			.con{

+ 29 - 10
pages/newsdetails.vue

@@ -5,13 +5,13 @@
 			<u-navbar title="资讯详情" :safeAreaInsetTop="true" @leftClick="leftClick" :titleStyle="{color:'#000'}" leftIconColor="#000" bgColor="transparent"></u-navbar>
 		</view>
 		<view class="banner">
-			<image class="img" :src="staticUrl+'/img/newsdetails-banner.png'" alt="">
+			<image class="img" :src="details.mainImg||staticUrl+'/img/newsdetails-banner.png'" alt="">
 		</view>
 		<view class="content-wrap">
-			<view class="title">资讯标题</view>
-			<view class="time">2023-11-12 12:28:24</view>
-			<view class="">
-				
+			<view class="title">{{details.title}}</view>
+			<view class="time">{{ $u.timeFormat(details.onlineTime, 'yyyy-mm-dd') }}</view>
+			<view class="centent">
+				<u-parse :content="details.centent"></u-parse>
 			</view>
 		</view>
 	</view>
@@ -24,16 +24,16 @@
 		data() {
 			return {
 				staticUrl:this.$commonConfig.staticUrl,
-				params:{
-					
-				}
-				
+				id:'',
+				details:{},
 			}
 		},
 		onShow() {
 		},
-		onLoad() {
+		onLoad(page) {
 			this.getSystemInfo();
+			this.id = page.id;
+			this.getDetails();
 
 		},
 		methods: {
@@ -45,6 +45,14 @@
 					uni.navigateBack()
 				};
 			},
+			getDetails(){
+				this.$u.api.newsdetails({id:this.id}).then(res=>{
+					this.details = res.data;
+					// console.log('res',res.data);
+				}).catch(err=>{
+					console.log('getDetails',err);
+				})
+			}
 
 		}
 	}
@@ -77,5 +85,16 @@
 		line-height: 22rpx;
 		margin-bottom: 40rpx;
 	}
+	.centent{
+		font-size: 28rpx;
+		font-weight: 400;
+		color: #6B6B6B;
+		line-height: 44rpx;
+		img,image{
+			width: 100%;
+			display: block;
+			margin: 10rpx auto;
+		}
+	}
 }
 </style>