123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384 |
- <!-- 发布器-预览卡片 -->
- <template>
- <div class="wrapper">
- <div class="card-container">
- <!-- 安装之后的卡片样式 -->
- <div class="left">
- <div class="tips">
- <div class="title">
- After
- </div>
- the installs denet
- </div>
- <div class="head">
- <img :src="userInfo.avatarUrl"
- class="avatar"/>
- <div class="article-wrapper">
- <div class="nickname">
- {{userInfo.name}}
- </div>
- <div class="name">
- @{{userInfo.nickName}}
- </div>
- </div>
- </div>
- <div class="after-cover-wrapper">
- <custom-card-cover :data="{
- totalCount: baseFormData.totalCount,
- amountValue: baseFormData.amountValue,
- amountCurrencyCode: 'USD',
- currencyIconUrl: require('../../assets/subject/icon-USD.png'),
- userInfo: {
- nickName: userInfo.name,
- avatarUrl: userInfo.avatarUrl
- }
- }"></custom-card-cover>
- </div>
- </div>
- <!-- 安装之前的卡片样式 -->
- <div class="content-before">
- <div class="tips">
- <div class="title">
- Before
- </div>
- the installs denet
- </div>
- <div class="head">
- <img :src="userInfo.avatarUrl"
- class="avatar"/>
- <div class="article-wrapper">
- <div class="nickname">
- {{userInfo.name}}
- </div>
- <div class="name">
- @{{userInfo.nickName}}
- </div>
- </div>
- </div>
- <div class="card-wrapper">
- <img :src="require('../../assets/subject/img-card-cover-blue.png')"
- class="card-cover"/>
- <div class="bottom-bar">
- <div class="title">
- DeNet.me
- </div>
- <div class="desc">
- 🎁 ${{baseFormData.amountValue}} GIVEAWAY
- </div>
- </div>
- <div class="user-info">
- <img :src="userInfo.avatarUrl"
- class="avatar"/>{{userInfo.name}}
- </div>
- <div class="content-text">
- <div class="title">
- USD GIVEAWAY
- </div>
- <div class="center">
- <img src="../../assets/subject/icon-USD.png" class="icon">
- {{baseFormData.amountValue}}
- </div>
- <div class="desc">
- {{baseFormData.totalCount}} WINNERS TO SHARE
- </div>
- </div>
- </div>
- </div>
- </div>
- </div>
- </template>
- <script setup>
- import { ref, defineProps, onMounted, nextTick } from "vue";
- import customCardCover from './custom-card-cover.vue'
- import {getChromeStorage} from "../../uilts/chromeExtension"
- import {getUser} from "../../http/publishApi"
- let userInfo = ref({});
- defineProps({
- postData: {
- type: Object,
- default: () => {
- return {
- }
- }
- },
- baseFormData: {
- type: Object,
- default: () => {
- return {
- }
- }
- }
- })
- const getUserInfo = (cb) => {
- getChromeStorage('userInfo', (res) => {
- if(res) {
- userInfo.value = res;
- }
- cb && cb(res);
- })
- }
- const getUserName = (screenName) => {
- getUser({
- params:{
- screenName
- }
- }).then(res => {
- console.log(res);
- if(res.code == 0) {
- userInfo.value.name = res.data.name || ''
- }
- });
- }
- onMounted(() => {
- getUserInfo((res) => {
- nextTick(() => {
- })
- if(res) {
- getUserName(res.nickName);
- }
- });
- })
- </script>
- <style lang="scss" scoped>
- .wrapper {
- width: 100%;
- height: 100%;
- padding: 10px 16px;
- box-sizing: border-box;
- border-bottom-right-radius: 16px;
- overflow-y: scroll;
- padding-bottom: 80px;
- display: flex;
- &::-webkit-scrollbar {
- display: none;
- }
- .card-container {
- width: 100%;
- height: fit-content;
- background: #ffffff;
- box-sizing: border-box;
- border-radius: 20px;
- padding: 0 16px;
- display: flex;
- .head {
- display: flex;
- .avatar {
- width: 47px;
- height: 47px;
- border-radius: 50%;
- object-fit: cover;
- margin-right: 13px;
- }
- .article-wrapper {
- display: flex;
- .nickname {
- font-weight: 500;
- }
- .nickname, .name {
- font-size: 15px;
- }
- .name {
- color: #566370;
- margin-left: 7px;
- }
- .desc {
- margin-top: 8px;
- }
- }
- }
- .left {
- width: 430px;
- }
- .after-cover-wrapper {
- position:relative;
- width:375px;
- margin-left: 53px;
- margin-top: -10px;
- .icon-gif {
- position: absolute;
- left: 50%;
- bottom: 80px;
- transform: translateX(-50%);
- width: 160px;
- height: 190px;
- }
- .content-after {
- width: 350px;
- border-radius: 16px;
- display: block;
- object-fit: contain;
- }
- }
- .content-before {
- width: 550px;
- margin-left: 40px;
- .card-wrapper {
- width: 491px;
- border: 1px solid #D1D9DD;
- background: #ffffff;
- box-sizing: border-box;
- overflow: hidden;
- position: relative;
- box-sizing: border-box;
- border-radius: 16px;
- margin-left: 60px;
- margin-top: -10px;
- .user-info {
- position: absolute;
- left: 15px;
- top: 15px;
- z-index: 100;
- display: flex;
- align-items: center;
- font-size: 16px;
- color: #FFF2D3;
- width: max-content;
- img {
- width: 24px;
- height: 24px;
- border: 2px solid #FFF4DB;
- box-sizing: border-box;
- border-radius: 50%;
- margin-right: 10px;
- }
- }
- .content-text {
- position: absolute;
- top: 68px;
- left: 35px;
- .title {
- font-weight: 800;
- font-size: 16px;
- color: #ffffff;
- }
- .center {
- padding: 12px 0;
- box-sizing: border-box;
- font-weight: 800;
- font-size: 56px;
- color: #fff;
- display: flex;
- align-items: center;
- .icon {
- width: 46px;
- height: 46px;
- margin-right: 10px;
- border: 3px solid #fff;
- border-radius: 50%;
- }
- }
- .desc {
- font-weight: 800;
- font-size: 13px;
- color: #ffffff;
- }
- }
- .card-cover {
- width: 100%;
- object-fit: contain;
- }
- .bottom-bar {
- padding: 12px;
- box-sizing: border-box;
- .title {
- color: #566370;
- font-weight: 400;
- font-size: 14px;
- margin-bottom: 6px;
- }
- .desc {
- font-weight: 500;
- font-size: 15px;
- color: #101419;
- }
- }
- }
- }
- .left, .content-before {
- position: relative;
- .tips {
- position: absolute;
- right: 0;
- background: #F4F4F4;
- border-radius: 6px;
- padding: 3px 10px;
- font-size: 10px;
- color: #4D4D4D;
- .title {
- font-weight: 500;
- font-size: 12px;
- color: #000;
- }
- }
- }
- }
- .select-btn-wrapper {
- padding-right: 16px;
- box-sizing: border-box;
- .title {
- font-size: 14px;
- margin-bottom: 15px;
- }
- .select-btn {
- margin-bottom: 16px;
- box-sizing: border-box;
- cursor: pointer;
- .icon {
- width: 14px;
- height: 14px;
- margin-right: 8px;
- }
- .text {
- font-size: 14px;
- display: flex;
- align-items: center;
- }
- .desc {
- white-space: nowrap;
- font-weight: 500;
- font-size: 13px;
- margin-left: 22px;
- }
- }
- .active {
- color: #000;
- }
- }
- }
- </style>
|