123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273 |
- <template>
- <view>
- <ujp-navbar title="未领用会员卡">
- <view slot="right" style="margin-right: 10px;">
-
- <view class="iconfont qr-code">
- 
- </view>
- </view>
- </ujp-navbar>
- <!-- 头部 -->
- <view class="header">
- <view class="discount-card">
- <img class="corner-mark" src="@/assets/img/nonactivated.png" alt="">
- <view class="top">
- <view class="right-corner">
- <img class="rightCorner" src="..../../assets/img/rightCorner.png" alt="">
-
- <img class="icon" src="@/assets/img/mb-times@3x.png" alt="">
-
- <img class="picc" src="..../../assets/img/picc.png" alt="">
- </view>
- </view>
- <view class="img">
- <img src="@/assets/img/halfoff.png" alt="">
- </view>
- <view class="card-number">
- 卡号:T2023081611208460925
- </view>
-
-
- </view>
- <img class="cardCover" src="@/assets/img/cardCover.png" alt="">
- </view>
- <!-- 卡片信息 -->
- <view class="main">
-
- <view class="details">
- <view class="headline">
- <view class="title">
- 卡片信息
- </view>
- <view class="show" v-if="!this.showHide" @click="showHide=true">
- 显示<u-icon name="eye"></u-icon>
- </view>
- <view class="hide" v-if="this.showHide" @click="showHide=false">
- 隐藏<u-icon name="eye-off"></u-icon>
- </view>
- </view>
- <view class="content" v-if="this.showHide">
- <view class="item">
- <view class="item-title">
- 卡类型
- </view>
- <view class="item-value">
- 服务费折扣卡
- </view>
- </view>
- <view class="item">
- <view class="item-title">
- 折扣率
- </view>
- <view class="item-value">
- 5折
- </view>
- </view>
- <view class="item">
- <view class="item-title">
- 规格
- </view>
- <view class="item-value">
- 可用4500度(有效期365天)
- </view>
- </view>
-
-
- </view>
-
-
-
-
- </view>
- <!-- 按钮 -->
- <view class="btn">
-
- <button class="get" @click="showModal">领用会员卡</button>
- </view>
-
- </view>
-
- <!-- 弹框 -->
- <view>
- <u-modal v-model="show" :content="content" show-cancel-button="true" confirm-color="#00b962"></u-modal>
-
- </view>
-
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- show: false,
- showHide:false,
- content: '确认领用此会员卡吗??'
-
- }
- },
- methods: {
- showModal() {
- this.show = true;
- },
- }
- }
- </script>
- <style lang="scss" scoped>
- page{
- background-color: #fff;
- }
- .header {
- padding: 24rpx 32rpx 0;
- opacity: 0.9;
- background: linear-gradient(30deg, rgba(59,182,254,1) 13.4%,rgba(0,185,98,1) 85.87%);
- position: relative;
- .discount-card {
- background: url(@/assets/img/cardDetail.png);
- background-size: 686rpx 400rpx;
- border-radius: 8px 8px 0 0;
- background-color: #1D1F2A;
- padding: 24rpx;
- margin-top: 24rpx;
- height: 200px;
- position: relative;
- .corner-mark{
- width: 128rpx;
- height: 128rpx;
- position: absolute;
- top: 0;
- right: 0;
- }
- .card-number{
- color: rgba(209, 178, 121, 1);
- text-align: center;
- margin-top: 8rpx;
- }
- .img {
- margin:82rpx auto 0;
- width: 486rpx;
- height: 104rpx;
-
- img {
- width: 100%;
- }
- }
-
-
- // 右下角角标
- .top {
-
- display: flex;
- align-items: center;
-
- height: 28rpx;
- .right-corner {
- display: flex;
- .rightCorner {
- width: 148rpx;
- }
- .icon {
- width: 24rpx;
- margin-left: 16rpx;
- }
- .picc {
- width: 124rpx;
- height: 32rpx;
- margin-left: 16rpx;
- }
- }
- }
- }
- .cardCover {
- width: 100%;
- height: 70rpx;
- position: absolute;
- left: 0;
- right: 0;
- bottom: 0rpx;
- z-index: 999;
- }
- }
- .main {
- background-color: #fff;
- padding: 32rpx;
- .headline{
- display: flex;
- justify-content: space-between;
- align-items: center;
- font-size: 32rpx;
- .title{
- color: rgba(16, 16, 16, 1);
-
- }
- .show,.hide{
- color: rgba(119, 119, 119, 1);
-
- }}
- .details {
- margin-top: 16rpx;
- border-radius: 12px;
- padding: 32rpx 24rpx;
- background-color: rgba(255, 255, 255, 1);
- text-align: center;
- border: 1px solid rgba(226, 226, 226, 1);
- margin-bottom: 40rpx;
- .item {
- display: flex;
- margin-top: 24rpx;
- .item-title {
- width: 128rpx;
- color: #777777;
- text-align: left;
- }
- .item-value {
- margin-left: 16rpx;
- color: #101010;
- }
- }
- }
- //按钮
- .btn{
- margin-top: 32rpx;
-
-
- .get{
- border-radius: 50px;
- background: linear-gradient(90deg, rgba(0,171,91,1) 0%,rgba(0,209,66,1) 100%);
- color: rgba(255, 255, 255, 1);
- font-size: 16px;
- text-align: center;
- }
- }
-
-
- }
- ::v-deep .u-model__content__message{
- color: #333333;
- font-size: 32rpx
- }
- </style>
|