123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626 |
- <template>
- <div class="content" :style="{ 'backgroundImage': `url(${this.back_img})` }">
- <div class="logo">
- <img src="/svg/icon-logo.svg" alt />
- </div>
- <!-- 红包 -->
- <div class="redPacket">
- <div class="area" v-show="area_show">
- <div class="title">
- <img :src="detail.postBizData.postUserInfo.avatarUrl" alt />
- <span>Giveaways from: {{ detail.postBizData.postUserInfo.nickName }}</span>
- </div>
- <div class="txt">Good Luck!</div>
- </div>
- <img src="/svg/back-top.svg" alt class="top" />
- <img src="/svg/back-down.svg" alt class="down" />
- <img src="/svg/icon-usd.svg" alt class="start" v-show="area_show" />
- <!-- 内容 -->
- <div class="head">
- <div class="head-title">
- <img :src="detail.postBizData.postUserInfo.avatarUrl" alt />
- <span>Giveaways from: {{ detail.postBizData.postUserInfo.nickName }}</span>
- </div>
- <div class="head-txt" v-if="status == 'open'">Awesome! You Will Get</div>
- <div class="head-txt" v-else-if="status == 'nothing'">Better luck next time!</div>
- <div class="head-txt" v-else-if="status == 'opened'">领取过了!</div>
- <div class="head-txt" v-else-if="status == 'expire'">This Giveways expired on 03-14</div>
- <div class="head-money" v-if="status == 'open'">
- <img src="/svg/icon-usd.svg" alt />
- <span class="money-txt">1.753</span>
- <div>
- <span>USD</span>
- </div>
- </div>
- </div>
- <div class="luck-list-title">
- <div>{{ detail.postBizData.receiveCount || 0 }}/{{ detail.postBizData.totalCount || 0 }} People Got</div>
- <div>Total ${{ detail.postBizData.amountValue / 100 || '' }} {{ detail.postBizData.amountCurrencyCode || '' }}</div>
- </div>
- <div class="luck-list" @scroll="handleScroll" ref="list">
- <div class="luck-item" v-for="item, i in luck_list" v-bind:key="i">
- <img v-if="item.simpleUserInfoVO.avatarUrl" :src="item.simpleUserInfoVO.avatarUrl" alt />
- <img v-else src="/svg/icon-twitter.svg" alt />
- <div class="luck-content">
- <div class="luck-title">{{ item.simpleUserInfoVO.nickName || 'Twitter User' }}</div>
- <div class="luck-time" v-if="item.finishTimestamp == -1">刚刚</div>
- <div class="luck-time" v-else>{{ item.finishTimestamp }}</div>
- </div>
- <div class="luck-money">
- <img src="/svg/icon-usd.svg" alt />
- <div class="luck-money-txt">{{ item.amountValue / 100 }}</div>
- </div>
- <div class="luck-king" v-if="item.maxAmount">
- <img src="/svg/icon-king-hat.svg" alt />
- <span>Luckiest Draw</span>
- </div>
- </div>
- </div>
- </div>
- <!-- 安装 -->
- <div class="install" v-show="status == 'open'">
- <div class="title">Withdraw to Wallet</div>
- <div class="validity">
- <span>Validity</span>
- <span style="color: red;">23:57:32</span>
- </div>
- <div class="flow">
- <div class="line"></div>
- <div class="area_num">
- <div class="num">1</div>
- <span>Install DeNet</span>
- </div>
- <div class="tip">Used for Task Verification and Giveaways Withdrawal</div>
- <div class="install_btn">Install</div>
- <div class="area_num">
- <div class="num">2</div>
- <span>Complete Tasks by {{ detail.postBizData.postUserInfo.nickName }}</span>
- </div>
- <div class="tip">Follow、Like tweet、Retweet (Just 1-3 minutes)</div>
- </div>
- </div>
- <div class="install no-chrome" v-show="status == 'opened'">
- <div>Install DeNet</div>
- <div>Don't miss the next Giveaway</div>
- <div class="tip">Used for Task Verification and Giveaways Withdrawal</div>
- <div class="install_btn">Install</div>
- <div class="install_chrome">
- <img src="/svg/icon-chrome.svg" alt />
- Install Chrome
- </div>
- </div>
- </div>
- </template>
- <script>
- import axios from 'axios';
- import Cookies from 'js-cookie'
- export default {
- name: "index",
- data() {
- return {
- back_img: '/svg/back-denet.svg',
- area_show: true,
- detail: {
- postId: '',
- postBizData: {
- imagePath: ''
- }
- },
- title: '',
- twitterTitle: 'deNet',
- jumpUrl: 'https://de-net-test.piaoquantv.com/',
- status: '',
- page_index: 1,
- page_size: 20,
- luck_list: [],
- luck_list_end: false,
- received_log: []
- }
- },
- head() {
- return {
- type: '',
- title: this.title,
- meta: [
- {
- name: 'twitter:card',
- content: 'summary_large_image'
- },
- {
- name: 'twitter:url',
- content: this.jumpUrl + this.detail.postId
- },
- {
- name: 'twitter:title',
- content: this.twitterTitle
- },
- {
- name: 'twitter:image',
- content: this.detail.postBizData.imagePath || ''
- },
- {
- name: 'twitter:image:width',
- content: '1280'
- },
- {
- name: 'twitter:image:height',
- content: '720'
- },
- ]
- }
- },
- methods: {
- handleScroll(e) {
- if (this.luck_list_end) {
- return
- }
- if ((this.$refs.list.clientHeight + this.$refs.list.scrollTop) / this.$refs.list.scrollHeight > .8) {
- this.luck_list_end = false
- this.page_index++
- this.getReceivedList()
- }
- },
- async getRedPacket() {
- this.received_log = Cookies.get('received_log') || []
- // 判断领取过
- if (this.received_log.length > 0) {
- this.received_log = JSON.parse(this.received_log)
- let _len = this.received_log.filter((item) => { return item.postId == this.detail.postId }).length
- if (_len) {
- // 领取过了
- this.status = 'opened'
- // 领取列表分页
- this.getReceivedList()
- return
- }
- }
- // return
- let { data } = await axios.post('https://denettestapi.piaoquantv.com/denet/post/luckdrop/receiveLuckdrop', {
- baseInfo: {
- },
- params: {
- postId: this.detail.postId || ''
- }
- })
- switch (data.code.toString()) {
- case '0':
- let _obj = {
- postId: this.detail.postId,
- receivedId: data.data.receivedId
- }
- this.received_log.push(_obj)
- Cookies.set('received_log', JSON.stringify(this.received_log), { expires: 100 });
- break;
- // 红包被领完了
- case '2008':
- this.status = 'nothing'
- break
- case '2029':
- // 推文未发布
- break
- default:
- console.log('getRedPacket', data)
- break;
- }
- // 领取列表分页
- this.getReceivedList()
- },
- async getReceivedList() {
- let { data } = await axios.post('https://denettestapi.piaoquantv.com/denet/post/luckdrop/getReceivedList', {
- params: {
- pageNum: this.page_index,
- pageSize: this.page_size,
- postId: this.detail.postId || ''
- }
- })
- if (data.code == 0) {
- if (data.data.length > 0) {
- this.luck_list = this.luck_list.concat(data.data)
- this.luck_list_end = false
- } else {
- this.luck_list_end = true
- }
- } else {
- console.log('getReceivedList', data)
- }
- },
- },
- async asyncData(params) {
- let { route } = params;
- let { data } = await axios.post('https://denettestapi.piaoquantv.com/denet/post/getDetail', {
- baseInfo: {
- token: ''
- },
- params: {
- postId: route.params.id || ''
- }
- })
- if (data.code == 0) {
- if (data.data && data.data.postBizData && typeof data.data.postBizData == 'string') {
- data.data.postBizData = JSON.parse(data.data.postBizData)
- }
- return {
- detail: data.data,
- }
- }
- },
- mounted() {
- //改变font-size
- (function (doc, win) {
- var docEI = doc.documentElement,
- resizeEvt = 'orientationchange' in window ? 'orientataionchange' : 'resize',
- recalc = function () {
- var clientWidth = docEI.clientWidth;
- if (!clientWidth) return;
- //100是字体大小,1510是开发时浏览器窗口的宽度,等比计算
- docEI.style.fontSize = 10 * (clientWidth / 1510) + 'px';
- }
- if (!doc.addEventListener) return;
- win.addEventListener(resizeEvt, recalc, false);
- doc.addEventListener('DOMContentLoaded', recalc, false);
- })(document, window);
- setTimeout(() => {
- this.area_show = false
- }, 1000)
- // 领取任务红包
- this.getRedPacket()
- }
- }
- </script>
- <style lang="scss" >
- html,
- body,
- #__nuxt,
- #__layout {
- width: 100%;
- height: 100%;
- padding: 0;
- margin: 0;
- }
- .content {
- width: 100%;
- height: 100%;
- background-size: 100%;
- background-repeat: no-repeat;
- position: relative;
- font-family: "SF Pro Display";
- font-style: normal;
- font-weight: 600;
- .logo {
- position: absolute;
- left: 4rem;
- top: 1.5rem;
- img {
- width: 107px;
- height: 40px;
- }
- }
- .redPacket {
- display: flex;
- justify-content: flex-start;
- flex-direction: column;
- position: absolute;
- top: 9rem;
- left: 50%;
- width: 37.5rem;
- margin-left: -18rem;
- height: 65rem;
- border-radius: 2rem;
- // background: red;
- overflow: hidden;
- animation: key_packet 3s;
- animation-delay: 6s;
- animation-fill-mode: forwards;
- box-shadow: 0 0 5px #888888;
- .start {
- position: absolute;
- width: 10rem;
- height: 10rem;
- bottom: 24rem;
- left: 50%;
- margin-left: -5rem;
- z-index: 3;
- }
- .top {
- top: 0;
- position: absolute;
- width: 100%;
- z-index: 1;
- animation: key_top 4s;
- animation-delay: 2s;
- animation-fill-mode: forwards;
- }
- .down {
- bottom: 0;
- position: absolute;
- height: 32.3rem;
- animation: key_down 4s;
- animation-delay: 2s;
- animation-fill-mode: forwards;
- }
- .head {
- .head-title {
- height: 9.7rem;
- line-height: 9.7rem;
- background: #ef4545;
- text-align: center;
- border-radius: 0 586px 586px/0 0 104px 104px;
- overflow: hidden;
- box-shadow: 0 0 5px #888888;
- img {
- width: 3rem;
- height: 3rem;
- border-radius: 50%;
- border: 2px solid #fff4db;
- }
- span {
- font-size: 1.4rem;
- color: #fff2d3;
- }
- }
- .head-txt {
- margin-top: 4.7rem;
- font-size: 2rem;
- text-align: center;
- color: #ef4545;
- }
- .head-money {
- display: flex;
- align-items: center;
- justify-content: center;
- img {
- width: 4rem;
- height: 4rem;
- }
- span {
- font-size: 1.3rem;
- }
- .money-txt {
- font-weight: 700;
- font-size: 4.8rem;
- color: #000000;
- letter-spacing: 0.3px;
- }
- }
- }
- .luck-list-title {
- padding: 0 16px;
- background: #fff;
- color: #9b9b9b;
- display: flex;
- justify-content: space-between;
- }
- .luck-list {
- background: #fff;
- flex: 1;
- overflow: scroll;
- .luck-item {
- display: flex;
- padding: 12px 16px;
- border-top: 1px solid #d1d1d1;
- justify-content: space-between;
- position: relative;
- img:first-child {
- border-radius: 50%;
- }
- .luck-king {
- position: absolute;
- top: 36px;
- right: 16px;
- display: flex;
- align-items: center;
- img {
- width: 22px;
- height: 19px;
- margin: 0;
- }
- span {
- font-weight: 500;
- font-size: 12px;
- line-height: 14px;
- letter-spacing: 0.3px;
- color: #f5b945;
- }
- }
- img {
- width: 42px;
- height: 42px;
- margin-right: 12px;
- }
- .luck-content {
- flex: auto;
- .luck-title {
- font-weight: 500;
- font-size: 16px;
- letter-spacing: 0.3px;
- color: #444444;
- }
- .luck-time {
- font-weight: 400;
- font-size: 12px;
- line-height: 14px;
- color: #9b9b9b;
- }
- }
- .luck-money {
- display: flex;
- height: 17px;
- align-items: center;
- img {
- width: 14px;
- height: 14px;
- margin-right: 6px;
- }
- .luck-money-txt {
- font-weight: 500;
- font-size: 14px;
- /* identical to box height */
- text-align: right;
- letter-spacing: 0.3px;
- color: #444444;
- }
- }
- }
- }
- .area {
- position: absolute;
- z-index: 2;
- width: 100%;
- .title {
- z-index: 11;
- margin-top: 8.5rem;
- text-align: center;
- img {
- width: 3rem;
- height: 3rem;
- border: 2px solid #fff4db;
- }
- span {
- letter-spacing: 0.3px;
- font-size: 1.6rem;
- color: #fff2d3;
- }
- }
- .txt {
- font-size: 4rem;
- text-align: center;
- letter-spacing: 0.03rem;
- color: #fff2d3;
- }
- }
- }
- .install {
- position: absolute;
- top: 20rem;
- right: 28.5rem;
- opacity: 0;
- animation: key_install 2s;
- animation-delay: 6s;
- animation-fill-mode: forwards;
- .title {
- font-size: 4.8rem;
- color: #000000;
- letter-spacing: 0.3px;
- }
- .validity {
- margin-top: 2rem;
- background: rgba(166, 166, 166, 0.1);
- width: 40rem;
- height: 3.3rem;
- line-height: 3.3rem;
- span {
- color: #000000;
- font-size: 1.4rem;
- }
- }
- .flow {
- position: absolute;
- margin-top: 4.6rem;
- .line {
- position: absolute;
- height: 16rem;
- border: 1px solid #e0e0e0;
- top: 3rem;
- left: 1.2rem;
- }
- .area_num {
- display: flex;
- align-items: center;
- .num {
- width: 2.4rem;
- height: 2.4rem;
- background-color: rgba(56, 154, 255, 1);
- border-radius: 50%;
- color: #fff;
- text-align: center;
- line-height: 2.4rem;
- font-size: 1.4rem;
- }
- span {
- margin-left: 1.5rem;
- color: #000000;
- font-size: 1.8rem;
- }
- }
- .tip {
- margin-left: 4rem;
- margin-top: 0.7rem;
- font-size: 1.4rem;
- color: #a4a4a4;
- }
- .install_btn {
- margin-left: 4rem;
- margin-top: 2rem;
- margin-bottom: 6.7rem;
- width: 23rem;
- height: 5.8rem;
- background: #389aff;
- border-radius: 10rem;
- color: #fff;
- line-height: 5.8rem;
- text-align: center;
- }
- }
- }
- }
- @keyframes key_install {
- 0% {
- opacity: 0.1;
- }
- 100% {
- opacity: 1;
- }
- }
- @keyframes key_packet {
- 0% {
- }
- 100% {
- left: 30.6rem;
- margin-left: -18rem;
- }
- }
- @keyframes key_top {
- 0% {
- top: 0;
- }
- 50% {
- top: -30rem;
- }
- 100% {
- top: -36rem;
- }
- }
- @keyframes key_down {
- 0% {
- bottom: 0;
- }
- 50% {
- bottom: -28.3rem;
- }
- 100% {
- bottom: -32.3rem;
- }
- }
- </style>
|