123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397 |
- <template>
- <div class="nft-content">
- <template v-if="isLoading">
- <img class="loading" src="../../static/svg/icon-loading.svg" />
- </template>
- <template v-else>
- <template v-if="isMobile">
- <MobileLandPage v-if="isSwipe" :prizePicPath="detail.pageImagePath" :playType="PlayType.NFT" :prize="detail.nftProjectName" :useFul="false" :nftProjectId="detail.nftProjectId"></MobileLandPage>
- <mobileBuyNft :purchaseStatus="detail.purchaseStatus" v-else></mobileBuyNft>
- </template>
- <template v-else>
- <div class="logo">
- <img src="/img/icon-logo.png" alt />
- </div>
- <div class="show">
- <div class="center">
- <div class="img">
- <img :src="detail.pageImagePath" />
- </div>
- <div class="info">
- <template v-if="isChrome">
- <div class="title">Install DeNet Plugin<br />to Buy NFT</div>
- <img class="buy" @click="installExtension" src="../../static/img/icon-install-plugin.svg" />
- </template>
- <template v-else>
- <div class="title">Only Support to Use Chrome to buy NFT</div>
- <img class="buy" @click="installChrome" src="../../static/img/icon-install-chrome.svg" />
- </template>
- </div>
- </div>
- </div>
- </template>
- </template>
- </div>
- </template>
- <script>
- import axios from 'axios';
- import Cookies from 'js-cookie';
- import { Toast } from 'vant';
- import { isBrowser, appVersionCode, getDetailSSR } from '@/utils/help.js';
- import Report from '@/log-center/log';
- import { PlayType } from './../../types';
- const api = {
- prod: 'https://api.denetme.net',
- pre: 'https://preapi.denetme.net',
- test: 'https://testapi.denetme.net',
- };
- const page = {
- prod: 'https://h5.denetme.net',
- pre: 'https://preh5.denetme.net',
- test: 'https://testh5.denetme.net',
- };
- const jumpUrl = page[process.env.NUXT_ENV.MODE] + '/';
- const baseURL = api[process.env.NUXT_ENV.MODE];
- const ClipboardJS = require('clipboard');
- export default {
- name: 'ntf',
- data() {
- return {
- PlayType,
- isLoading: true,
- appVersionCode: appVersionCode,
- jumpUrl: jumpUrl,
- detail: {},
- config: {},
- title: 'DeNet Giveaway',
- isMobile: false,
- isChrome: false,
- isSwipe: false,
- linkHref: '',
- metaTitle: 'DeNet: An Easy Web3 Tool For GIVEAWAY / AIRDROP',
- };
- },
- head() {
- return {
- type: '',
- title: this.title,
- appVersionCode: appVersionCode,
- meta: [
- // facebook
- {
- name: 'og:url',
- content: this.jumpUrl + 'nft/' + this.$route.params.id + `/${this.$route.params.account}`,
- },
- {
- name: 'og:title',
- content: this.metaTitle,
- },
- {
- name: 'og:image',
- content: this.detail.linkImagePath || '',
- },
- // twitter
- {
- name: 'twitter:card',
- content: 'summary_large_image',
- },
- {
- name: 'twitter:url',
- content: this.jumpUrl + 'nft/' + this.$route.params.id + `/${this.$route.params.account}`,
- },
- {
- name: 'twitter:title',
- content: this.metaTitle,
- },
- {
- name: 'twitter:image',
- content: this.detail.linkImagePath || '',
- },
- ],
- };
- },
- async asyncData(context) {
- let { route, error } = context;
- let result = await getDetailSSR({
- context,
- params: {
- nftProjectId: route.params.id || '',
- },
- url: `${baseURL}/denet/nft/project/getNftProjectInfo`,
- });
- if (result.code == 0 && result.data !== null) {
- console.log(result.data);
- return {
- detail: result.data,
- };
- } else {
- return error({
- message: result.msg,
- statusCode: 301,
- });
- }
- },
- created() {
- this.setCookieMid();
- this.getConfig();
- },
- mounted() {
- this.checkBrowser();
- this.setNftInfo();
- this.isLoading = false;
- var clipboard = new ClipboardJS('.btn');
- let that = this;
- clipboard.on('success', function (e) {
- Toast('copy success');
- // 埋点
- that.trackingClick();
- e.clearSelection();
- });
- this.pageSource = Report.pageSource.newUserLandingPage;
- // 埋点
- if (this.isMobile) {
- this.pageSource = Report.pageSource.mobileLandingPage;
- Report.reportLog({
- baseInfo: {
- appVersionCode: appVersionCode,
- mid: this.mid,
- pageSource: this.pageSource,
- machineCode: this.mid,
- },
- params: {
- eventData: {
- businessType: Report.businessType.pageView,
- nftProjectId: this.detail.nftProjectId,
- redPacketType: 2,
- },
- },
- });
- } else {
- Report.reportLog({
- baseInfo: {
- appVersionCode: appVersionCode,
- mid: this.mid,
- pageSource: this.pageSource,
- machineCode: this.mid,
- },
- params: {
- eventData: {
- businessType: Report.businessType.pageView,
- nftProjectId: this.detail.nftProjectId,
- redPacketType: 2,
- },
- },
- });
- }
- },
- methods: {
- trackingClick() {
- Report.reportLog({
- baseInfo: {
- appVersionCode: appVersionCode,
- mid: this.mid,
- pageSource: this.pageSource,
- machineCode: this.mid,
- },
- params: {
- eventData: {
- businessType: Report.businessType.buttonClick,
- objectType: Report.objectType.installButton,
- nftProjectId: this.detail.nftProjectId,
- redPacketType: 2,
- },
- },
- });
- },
- guid() {
- return 'xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx'.replace(/[xy]/g, function (c) {
- var r = (Math.random() * 16) | 0,
- v = c == 'x' ? r : (r & 0x3) | 0x8;
- return v.toString(16);
- });
- },
- setCookieMid() {
- let _cookie_mid_arr = Cookies.get('mid') || [];
- if (_cookie_mid_arr.length > 0) {
- this.mid = JSON.parse(_cookie_mid_arr)[0].mid;
- } else {
- this.mid = this.guid();
- Cookies.set('mid', JSON.stringify([{ mid: this.mid }]), { expires: 1000 });
- }
- },
- installExtension() {
- // 埋点
- this.trackingClick();
- let { extensionsInstallUrl } = this.config;
- window.open(extensionsInstallUrl);
- },
- installChrome() {
- window.open('https://www.google.com/chrome');
- },
- async getConfig() {
- let { data } = await axios.post(`${baseURL}/denet/base/config/getFrontConfig`, {
- baseInfo: {
- appVersionCode: appVersionCode,
- mid: this.mid,
- },
- params: {},
- });
- if (data.code == 0) {
- this.config = data.data;
- }
- },
- checkBrowser() {
- this.linkHref = window.location.href;
- this.isChrome = isBrowser() == 'chrome';
- this.isSwipe = this.$route.params.type ? true : false;
- this.isMobile = navigator.userAgent.match(/(phone|pad|pod|iPhone|iPod|ios|iPad|Android|Mobile|BlackBerry|IEMobile|MQQBrowser|JUC|Fennec|wOSBrowser|BrowserNG|WebOS|Symbian|Windows Phone)/i);
- },
- setNftInfo() {
- let nftInfo = {
- nftProjectId: this.detail.nftProjectId || '',
- twitterAccount: atob(this.$route.params.account || ''),
- createTime: Date.now(),
- jump_type: 'nft_info',
- };
- Cookies.set('jump_info', JSON.stringify(nftInfo), { expires: 100 });
- },
- },
- };
- </script>
- <style lang="scss">
- html,
- body,
- #__nuxt,
- #__layout {
- width: 100%;
- height: 100%;
- padding: 0;
- margin: 0;
- }
- .nft-content {
- width: 100%;
- height: 100%;
- background: linear-gradient(180deg, #ffffff 0%, #f0f7fe 94.31%);
- .loading {
- position: absolute;
- transform: translate(-50%, -50%);
- top: 50%;
- left: 50%;
- margin: auto;
- width: 40px;
- border-radius: 50%;
- }
- .logo {
- display: flex;
- align-items: center;
- height: 70px;
- margin-left: 25px;
- img {
- width: 99px;
- height: 32px;
- }
- }
- .show {
- display: flex;
- align-items: center;
- height: calc(100% - 70px);
- .center {
- display: flex;
- margin: -50px auto 0;
- width: 1000px;
- .img {
- width: 50%;
- margin-right: 6%;
- img {
- width: 100%;
- }
- }
- .info {
- display: flex;
- flex-direction: column;
- justify-content: center;
- width: 44%;
- .tag {
- width: 25%;
- margin-bottom: 6px;
- }
- .title {
- color: #3a4b56;
- font-size: 2.2vw;
- font-family: 'SF Pro Display';
- font-weight: bold;
- word-break: break-word;
- margin-bottom: 1vw;
- }
- .buy {
- width: 75%;
- max-width: 263px;
- max-height: 64px;
- cursor: pointer;
- }
- }
- }
- }
- }
- .small {
- padding: 30px 20px;
- .banner {
- width: 100%;
- img {
- width: 100%;
- }
- }
- .title {
- color: #000000;
- font-weight: 600;
- font-size: 20px;
- text-align: center;
- padding: 17px 0 12px;
- }
- .desc {
- color: #8a8a8a;
- font-size: 13px;
- padding: 0 22px;
- word-break: break-all;
- text-align: center;
- }
- .copy {
- margin-top: 35px;
- button {
- width: 100%;
- border: 0;
- height: 53px;
- color: #fff;
- font-size: 18px;
- font-weight: 700;
- border-radius: 55px;
- background: #1d9bf0;
- }
- }
- }
- </style>
|