123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108 |
- <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>
|