123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313 |
- <template>
- <view class="registration_success">
- <nav-bar title="模考报名成功"></nav-bar>
- <view class="exam_success">
- <image class="imgs" src="../static/icon_success.png"></image>
- <text class="success_word">报名成功</text>
- </view>
- <view class="exam_times">
- <view class="time_title">模考大练兵 比拼赢大奖</view>
- <view class="time_range">活动时间:{{ startTime | formate('yyyy年mm月dd日')}}-{{ endTime | formate('yyyy年mm月dd日')}}</view>
- </view>
- <view class="mains">
- <view class="gives">
- 送价值1109元一建《冲刺黄金包》 提分必备神器
- </view>
- <view class="middles">
- <view class="qr_codes">
- <image class="code" src="../static/erCode.png" show-menu-by-longpress="true"></image>
- </view>
- <view class="discern">长按识别二维码 加活动专属微信号</view>
- </view>
- <view class="middle_line">
- <view class="half_cir_left"></view>
- <view class="line"></view>
- <view class="half_cir_rig"></view>
- </view>
- <view class="flows">
- <view class="f_title">活动流程</view>
- <view class="f_lines">
- <view class="numbers">1</view>
- <view class="line line_one"></view>
- <view class="numbers">2</view>
- <view class="line line_two"></view>
- <view class="numbers">3</view>
- <view class="line line_three"></view>
- <view class="numbers">4</view>
- </view>
- <view class="f_words">
- <view class="word word_one">预约报名</view>
- <view class="word word_two">扫码添加活动 专属微信号</view>
- <view class="word word_three">模考</view>
- <view class="word word_four">领福利</view>
- </view>
- </view>
- </view>
- <view class="distance_time">
- <view class="time_item">
- 距模考开始时间还有:
- <u-count-down v-if="sDay > 1" :timestamp="lastStartDay" :show-days="true" separator="zh"
- :show-hours="false" :show-minutes="false" :show-seconds="false" font-size="28"
- bg-color="#DFECFD" separator-color="#222222" color="#222222" separator-size="28">
- </u-count-down>
- <text v-else>0天</text>
- </view>
- <view class="time_item">
- 距模考结束时间还有:
- <u-count-down v-if="eDay > 1" :timestamp="lastEndDay" :show-days="true" separator="zh"
- :show-hours="false" :show-minutes="false" :show-seconds="false" font-size="28"
- bg-color="#DFECFD" separator-color="#222222" color="#222222" separator-size="28">
- </u-count-down>
- <text v-else>0天</text>
- </view>
- <view class="time_item">活动详情请咨询业务人员或致电020-87085982/87085983</view>
- </view>
- <view class="exam_entry">
- <text class="entrys">考试入口:</text>请进入祥粤云学堂小程序或者网站, 在个人中心找到模考功能进行考试。
- </view>
- </view>
- </template>
- <script>
- var curTime = new Date().getTime() // 当前时间的时间戳
- export default {
- name: 'registrationSuccess',
- data() {
- return {
- startTime: '',
- endTime: '',
- lastStartDay: '',
- lastEndDay: '',
- sDay: '',
- eDay: '',
- }
- },
- onLoad(option) {
- console.log('option: ', option)
- this.startTime = option.startTime
- this.endTime = option.endTime
- this.lastStartDay = option.startTime - parseInt(curTime/1000)
- this.lastEndDay = option.endTime - parseInt(curTime/1000)
- this.sDay = this.lastStartDay/24/60/60
- this.eDay = this.lastEndDay/24/60/60
- console.log('lastStartDay', this.lastStartDay, this.lastEndDay, this.sDay, this.eDay)
- },
- onShow() {
-
- },
- }
- </script>
- <style>
- page {
- background-color: #DFECFD;
- }
- </style>
- <style lang="scss" scoped>
- .registration_success {
- width: 100%;
- display: flex;
- flex-direction: column;
- align-items: center;
- }
- .exam_success {
- margin-top: 68rpx;
- display: flex;
- align-items: center;
- .imgs {
- width: 56rpx;
- height: 56rpx;
- }
- .success_word {
- font-size: 48rpx;
- font-weight: 800;
- color: #01D38A;
- margin-left: 16rpx;
- }
- }
- .exam_times {
- margin-top: 92rpx;
- display: flex;
- flex-direction: column;
- align-items: center;
- .time_title {
- font-size: 48rpx;
- font-weight: bold;
- color: #3487FF;
- }
- .time_range {
- font-size: 26rpx;
- font-weight: 500;
- color: #222222;
- margin-top: 12rpx;
- }
- }
- .mains {
- width: 670rpx;
- height: 874rpx;
- background: #FFFFFF;
- border-radius: 16rpx;
- margin-top: 36rpx;
- .gives {
- width: 100%;
- height: 160rpx;
- padding: 32rpx 60rpx;
- background-color: #3F8DFD;
- font-size: 36rpx;
- font-weight: bold;
- color: #FFFFFF;
- line-height: 48rpx;
- border-radius: 16rpx 16rpx 0rpx 0rpx;
- text-align: center;
- }
- .middles {
- margin-top: 48rpx;
- display: flex;
- flex-direction: column;
- align-items: center;
- .qr_codes {
- width: 268rpx;
- height: 268rpx;
- background: #FFFFFF;
- border-radius: 24rpx;
- border: 4rpx solid #91BEFF;
- position: relative;
- top: 0;
- left: 0;
- .code {
- width: 248rpx;
- height: 248rpx;
- position: absolute;
- top: 6rpx;
- left: 6rpx;
- }
- }
- .discern {
- font-size: 28rpx;
- font-weight: bold;
- color: #222222;
- margin-top: 24rpx;
- }
- }
- .middle_line {
- display: flex;
- justify-content: space-between;
- align-items: center;
- margin-top: 28rpx;
- .half_cir_left {
- width: 20rpx;
- height: 40rpx;
- border-radius: 0rpx 20rpx 20rpx 0rpx;
- background-color: #DFECFD;
- }
- .half_cir_rig {
- width: 20rpx;
- height: 40rpx;
- border-radius: 20rpx 0rpx 0rpx 20rpx;
- background-color: #DFECFD;
- }
- .line {
- width: 588rpx;
- height: 2rpx;
- border-bottom: 2rpx dashed #C4DCFF;
- }
- }
- .flows {
- margin-top: 18rpx;
- display: flex;
- flex-direction: column;
- align-items: center;
- .f_title {
- font-size: 32rpx;
- font-weight: bold;
- color: #222222;
- position: relative;
- top: 0rpx;
- left: 0rpx;
- &::after {
- content: '';
- width: 32rpx;
- height: 8rpx;
- background: #3F8DFD;
- position: absolute;
- bottom: -8rpx;
- left: 40rpx;
- }
- }
- .f_lines {
- width: 500rpx;
- display: flex;
- align-items: center;
- justify-content: space-between;
- margin: 26rpx 0rpx 16rpx 0rpx;
- .numbers {
- width: 40rpx;
- height: 40rpx;
- line-height: 40rpx;
- text-align: center;
- background: #D5E6FF;
- border-radius: 50%;
- font-size: 24rpx;
- font-weight: bold;
- color: #3F8DFD;
- }
- .line {
- height: 2rpx;
- border-bottom: 2rpx dashed #C4DCFF;
- }
- .line_one {
- width: 112rpx;
- }
- .line_two {
- width: 86rpx;
- }
- .line_three {
- width: 48rpx;
- }
- }
- .f_words {
- display: flex;
- align-items: flex-start;
- width: 526rpx;
- justify-content: space-between;
- .word {
- font-size: 26rpx;
- font-weight: 400;
- color: #3F8DFD;
- }
- .word_one {
- }
- .word_two {
- width: 156rpx;
- text-align: center;
- }
- }
- }
- }
- .distance_time {
- margin-top: 56rpx;
- .time_item {
- font-size: 32rpx;
- color: #222222;
- margin-bottom: 24rpx;
- }
- }
- .exam_entry {
- margin-top: 22rpx;
- margin-bottom: 100rpx;
- width: 686rpx;
- height: 128rpx;
- background: #3F8DFD;
- border-radius: 16rpx;
- padding: 20rpx 50rpx;
- color: #fff;
- line-height: 44rpx;
- .entrys {
- font-size: 28rpx;
- font-weight: bold;
- color: #FFFFFF;
- }
- }
- </style>
|