123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243 |
- <template>
- <view>
- <u-navbar title="奖品详情">
-
- </u-navbar>
- <!-- 奖品图 -->
- <view class="prize-img">
- <img src="../../../../assets/img/plane.png" alt="">
- </view>
- <!-- 奖品信息 -->
- <view class="prize-infos">
- <view class="name">
- 单人春节往返海南机票*2
- </view>
- <view class="explain">
- 奖品说明文字内容
- </view>
- <view class="points">
- <view class="number">
- 1500 积分
- </view>
- <view class="hint">
- *兑换后积分不退还
- </view>
- </view>
-
- </view>
- <!-- 兑换说明 -->
- <view class="exchange-explain">
- <view class="title">
- 兑换说明
- </view>
- <view class="item">
- <view class="name">
- 使用
- </view>
- <view class="value">
- <p>1、使用有效期:自绑定当日起第7天24点前可用,逾期未使用,自动作废;</p>
- <p>2、每个职工账户一年度限兑换1次;</p>
- <p>3、兑换记录可在“我的-积分-积分兑换”中查看</p>
- </view>
- </view>
- <view class="item">
- <view class="name">
- 说明
- </view>
- <view class="value">
- <p>1.对机票的使用等有任何疑问可以拨打综合办公室电话:0716-4108989/4108979。</p>
-
- </view>
- </view>
- </view>
-
- <!-- 底部 -->
- <view class="bottom">
- <view class="points">
- <view class="need">
- <text>1500</text>
- <text class="unit">积分</text>
- </view>
- <view class="have">
- <text>当前积分</text>
- <text class="num">20</text>
- </view>
- </view>
- <!-- 立即兑换 -->
- <view class="button">
- 立即兑换
- </view>
- <!-- 积分不足 -->
- <!-- <view class="button button2">
- 积分不足
- </view> -->
- <!-- 待开抢 -->
- <!-- <view class="button button3">
- <p class="p1">待开抢</p>
- <p class="p2">01月07日10:00开抢</p>
- </view> -->
- <!-- 已兑完 -->
- <!-- <view class="button button4">
- 已兑完
- </view> -->
-
- </view>
-
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
-
- }
- },
- methods: {
-
- }
- }
- </script>
- <style lang="scss" scoped>
- page{
- font-family: 'Regular';
- }
- // 奖品图片
- .prize-img{
- width: 100%;
- height:424rpx;
- img{
- width: 100%;
- height: 100%;
- }
- }
-
- // 奖品信息
- .prize-infos{
- padding: 32rpx;
- background-color: #fff;
-
- .name{
- color: rgba(51, 51, 51, 1);
- font-size: 40rpx;
- font-weight: bold;
- font-family: 'SemiBold';
- }
- .explain{
- color: rgba(119, 119, 119, 1);
- margin-top: 8rpx;
-
- }
- .points{
- margin-top: 40rpx;
- display: flex;
- justify-content: space-between;
- align-items: center;
- color: rgba(255, 61, 0, 1);
- font-weight:bold;
- .number{
- font-size: 40rpx;
-
- }
-
- }
- }
- // 兑换说明
- .exchange-explain{
- background-color: #fff;
- margin-top: 24rpx;
- padding:24rpx 32rpx;
- .title{
- color: rgba(51, 51, 51, 1);
- font-size: 18px;
- margin-bottom: 48rpx;
- font-family: 'Medium';
- }
- .item{
- display: flex;
- line-height: 40rpx;
- margin-bottom: 40rpx;
- .name{
- width: 56rpx;
- color: #777777;
- }
- .value{
- flex: 1;
- margin-left: 40rpx;
- color: #333333;
- p{
- margin-bottom: 16rpx;
- }
- }
- }
-
- }
- // 底部
- .bottom{
- position: fixed;
- left: 0;
- right: 0;
- bottom: 0;
- background-color: #fff;
- padding: 36rpx 32rpx;
- display: flex;
- justify-content: space-between;
- .points{
- .need{
- font-family: 'Medium';
- color: rgba(255, 61, 0, 1);
- font-size: 16px;
- .unit{
- margin-left: 8rpx;
- }
- }
- .have{
- color: rgba(119, 119, 119, 1);
- .num{
- margin-left: 8rpx;
- }
- }
- }
- .button{
- font-family: 'Medium';
- width:280rpx;
-
- height: 80rpx;
- line-height: 80rpx;
- border-radius: 50px;
- background-color: rgba(255, 61, 0, 1);
- color: #fff;
- font-size: 32rpx;
- text-align: center;
- }
- .button2,.button3,.button4{
- background-color: rgba(226, 226, 226, 1);
- color: #777777;
- font-weight: bold;
-
- }
- .button3{
-
-
- .p1{
- font-size: 28rpx;
- line-height: 40rpx;
- margin-top: 4rpx;
- }
- .p2{
- font-size: 24rpx;
- line-height: 34rpx;
- }
- }
- @media screen and(max-width:320px) {
- .button3{
- width: auto;
- padding:0 32rpx;
- }
- }
- }
- </style>
|