123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224 |
- <template>
- <div style=" height:100vh; width:100%;">
- <!-- 弹窗 -->
- <ShaerPopup :show="shaerShow" @closeMyself="cancelFrom" />
- <!-- 弹窗 -->
-
- <router-link :to="{path:'/'}">
- <div class="backhome" :style="`background:url('${backimg}');background-size: 100% auto;`"></div>
- </router-link>
-
- <div>
- <div v-if="item==0">
- <!-- 领取屏保 -->
- <div class="outer3 flex-col">
- <div class="haibao">
- <img class="haibao" src="~@/assets/buttonImg/saveHaibao.png" alt />
- </div>
- <div class="mod2 flex-col">
- <div class="block1 flex-col">
- <div
- class="section1 flex-col"
- @click="()=>{this.shaerShow=true}"
- :style="`background-image: url(${shaerBut});`"
- ></div>
- <span :style="`background-image: url(${pressImage});`" class="info2"></span>
- </div>
- </div>
- </div>
- </div>
- <div v-else>
- <!-- 挂历 -->
- <div class="page flex-col">
- <div class="group1 flex-col">
- <div class="wrap3 flex-col">
- <img src="../assets/buttonImg/saveMonth.png" class="subhaibao" />
- </div>
- <div class="wrap5 flex-col">
- <span class="txt1" :style="`background-image: url(${pressLucky});`"></span>
- <div
- class="main5 flex-col"
- :style="`background-image: url(${shaerButRed});`"
- @click="()=>{this.shaerShow=true}"
- ></div>
- </div>
- </div>
- </div>
- </div>
- </div>
- </div>
- </template>
-
- <script>
- import { hideLoading } from '@/utils'
-
- export default {
- name: 'SaveShare',
- components: {
- ShaerPopup: () => import('@/components/ShaerPopup.vue')
- },
- props: {
- show: {
- type: Boolean,
- default: false,
- required: true
- },
- type: String,
- cancelText: {
- default: '取消',
- required: false
- }
- },
- data() {
- return {
- item: null,
- shaerShow: false,
- backimg: require('../assets/buttonImg/backImg.png'),
- shaerBut: require('../assets/buttonImg/sayFriend.png'),
- pressImage: require('../assets/buttonImg/pressSave.png'),
- shaerButRed: require('../assets/buttonImg/sayFriend.png'),
- pressLucky: require('../assets/buttonImg/happyAccept.png')
- }
- },
- mounted() {
- hideLoading()
- },
-
- watch: {
- '$route.query.states': {
- handler(val) {
- console.log('🚀 ~ file: SaveShare.vue ~ line 24 ~ val', val)
-
- if (val) {
- this.item = val
- } else {
- this.$router.go(-1)
- }
- },
- immediate: true // 页面加载时就启动
- }
- },
- methods: {
- cancelFrom() {
- this.shaerShow = false
- }
- }
- }
- </script>
-
- <style lang="less" scoper>
- .flex-col {
- display: flex;
- flex-direction: column;
- }
- .backhome {
- width: 85px;
-
- height: 42px;
- position: fixed;
- left: 1rem;
- top: 1rem;
- z-index: 19;
- background-repeat: no-repeat !important;
- }
- .outer3 {
- width: 100vw;
- height: 100vh;
- justify-content: flex-end;
- .haibao {
- width: 100vw;
- position: absolute;
- left: 0;
- top: 0;
- }
- .mod2 {
- z-index: 35;
- height: 210px;
- background-image: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.6));
- width: 100vw;
- justify-content: flex-end;
- padding-bottom: 33px;
- align-items: center;
- .block1 {
- width: 180px;
- height: 113px;
- .section1 {
- height: 48px;
- border-radius: 8px;
- background-size: 100% auto;
- background-color: #fff;
- width: 180px;
- justify-content: center;
- align-items: center;
- border: 0;
- }
- .info2 {
- width: 152px;
- height: 54px;
- display: block;
- color: #fff;
- text-align: center;
- align-self: center;
- margin-top: 12px;
- background-size: 100% auto;
- background-repeat: no-repeat;
- }
- }
- }
- }
-
- // 第二个页面
- .page {
- // z-index: 1;
- // position: relative;
- // overflow-y: auto;
- // width: 100vw;
- // height: 100vh;
-
- .group1 {
- .wrap3 {
- z-index: 13;
- width: 98vw;
- overflow: hidden;
- align-self: center;
- margin-left: 0;
- .subhaibao {
- // position: absolute;
- width: 100%;
- left: 0;
- top: 0;
- }
- }
- .wrap5 {
- height: 137px;
- background-color: #efe9e0;
- // margin-top: 19px;
- width: 100vw;
- justify-content: center;
- align-items: center;
- display: flex;
- .txt1 {
- background-size: 100% auto;
- background-repeat: no-repeat;
- width: 112px;
- height: 18px;
- margin-bottom: 80px;
- }
- }
-
- .main5 {
- background-size: 100% auto;
- background-repeat: no-repeat;
- height: 48px;
- border-radius: 8px;
- margin-top: 11px;
- width: 343px;
- background-color: #b12b32;
- border: 0;
- position: fixed;
- z-index: 15;
- bottom: 5vh;
- }
- }
- }
- </style>
|