ソースを参照

凭话费领年卡预约反馈

常志远 1 年間 前
コミット
9e2199da44
4 ファイル変更116 行追加0 行削除
  1. BIN
      assets/img/map@3x.png
  2. BIN
      assets/img/success2@3x.png
  3. 8 0
      pages.json
  4. 108 0
      pages/user/reservationFeedback.vue

BIN
assets/img/map@3x.png


BIN
assets/img/success2@3x.png


+ 8 - 0
pages.json

@@ -914,6 +914,14 @@
         		"navigationBarTitleText" : "",
         		"enablePullDownRefresh" : false
         	}
+        },
+        {
+        	"path" : "pages/user/reservationFeedback",
+        	"style" : 
+        	{
+        		"navigationBarTitleText" : "",
+        		"enablePullDownRefresh" : false
+        	}
         }
     ],
 	"globalStyle": {

+ 108 - 0
pages/user/reservationFeedback.vue

@@ -0,0 +1,108 @@
+<template>
+	<view>
+		<ujp-navbar title="预约反馈" ></ujp-navbar>
+		<view class="background">
+			<view class="img-box">
+				<image  class="img" src="@/assets/img/success2@3x.png" mode=""></image>
+			</view>
+			<view class="text">
+				恭喜您,预约成功!
+			</view>
+			<view class="main">
+				<p class="title">尊敬的用户:</p>
+				<p>您预约的“<text class="emphasis">凭话费领年卡</text>”活动已通过,
+				平台定于<text class="emphasis underline">2024年3月4日</text>(下周一)
+				至<text class="emphasis underline">2024年3月8日</text>(下周五)集中办理,
+				请携带个人<text class="red" >身份证</text>、<text class="red">车辆行驶证</text>前往<text class="emphasis underline">荆鹏软件园一楼</text>柜台办理。</p>
+			<view class="map">
+				<image class="map-img" src="../../assets/img/map@3x.png" mode=""></image>
+			</view>
+			<view class="hint">
+				点击查看地图导航
+			</view>
+			</view>
+		</view>
+	</view>
+</template>
+
+<script>
+	export default {
+		data() {
+			return {
+				
+			}
+		},
+		methods: {
+			
+		}
+	}
+</script>
+
+<style lang="scss" scoped>
+	.background{
+		height: 360px;
+		background: linear-gradient(180deg, rgba(0,185,98,1) 41%,rgba(0,185,98,0) 100%);
+		
+		position: relative;
+		.img-box{
+			text-align: center;
+			.img{
+				width: 144rpx;
+				height: 144rpx;
+				margin: 56rpx 0 8rpx;
+			}
+		}
+		
+		.text{
+			color: rgba(255, 255, 255, 1);
+			font-size: 40rpx;
+			font-weight: bold;
+			text-align: center;
+		}
+		
+		.main{
+			border-radius: 16px;
+			background: linear-gradient(180deg, rgba(218,251,235,1) 0%,rgba(255,255,255,1) 8%);
+			border: 1px solid rgba(255, 255, 255, 1);
+			padding: 40rpx;
+			position: absolute;
+			top:320rpx;
+			left:48rpx;
+			right: 48rpx;
+			color: rgba(51, 51, 51, 1);
+			font-size: 32rpx;
+			line-height: 64rpx;
+			text-align: justify;
+			.title{
+				font-weight: bold;
+				margin-bottom: 32rpx;
+			}
+			.emphasis{
+				display: inline-block;
+				font-weight: bold;
+				
+			}
+			.underline{
+				text-decoration: underline;
+			}
+			.red{
+				display: inline-block;
+				font-weight: bold;
+				text-decoration: underline;
+				color: #FF6923 ;
+			}
+			.map-img{
+				width: 574rpx;
+				height: 200rpx;
+				margin-top: 40rpx;
+			}
+			.hint{
+				color: rgba(153, 153, 153, 1);
+				font-size: 24rpx;
+				
+				text-align: center;
+			}
+		}
+	}
+
+</style>