| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205 |
- <template>
- <view class="card-container">
- <!-- 顶部背景 -->
- <image class="top-bg" src="/static/image/home/top-bg.png" />
- <NavBar :title="'名片信息'" :show_back="false" color="#fff" :bgImg="'/static/image/home/top-bg.png'" :fixed="true" :bg="'transparent'">
- <template #left>
- <!-- <view class="left-title">{{appName}}</view> -->
- </template>
- </NavBar>
- <!-- 名片卡片 -->
- <view class="page-top" :style="cardStyle">
- <UserCard :info="cardInfo" @call="makeCall" />
- </view>
- <view class="card-content" :style="contentCardStyle">
- <!-- 企业简介 -->
- <CompanyIntroduce></CompanyIntroduce>
- </view>
- <!-- 隐藏的 Canvas 用于生成名片快照 -->
- <canvas id="posterCanvas" type="2d"
- style="position: fixed; left: -9999px; top: -9999px; width: 750px; height: 780px;"></canvas>
-
- <!-- 隐藏的 Canvas 用于生成二维码海报 -->
- <view class="hidden-canvas-box">
- <canvas id="qrPosterCanvas" type="2d" style="width: 600px; height: 700px;"></canvas>
- </view>
- </view>
- </template>
- <script setup>
- import {
- ref,
- computed,
- onMounted
- } from 'vue'
- import NavBar from '@/components/nav-bar/index.vue'
- import UserAvatar from '@/components/user-avatar/index.vue'
- import EmptyState from '@/components/empty-state/index.vue'
- import ShareButton from '@/components/shareButton/index.vue'
- import CompanyIntroduce from '@/components/companyIntroduce/index.vue'
- import UserCard from '@/components/user-card/index.vue'
- import {
- useUserStore
- } from '@/store/modules/user.js'
- import {
- storeToRefs
- } from 'pinia'
- import {
- onShareAppMessage
- } from '@dcloudio/uni-app';
- // 使用 Pinia 管理用户状态
- const userStore = useUserStore()
- const {
- cardInfo,
- companyInfo,
- cardImage
- } = storeToRefs(userStore)
- let appName = ref('')
- // 入场动画
- const pageReady = ref(false)
- const contentReady = ref(false)
- onMounted(() => {
- requestAnimationFrame(() => { pageReady.value = true })
- setTimeout(() => { contentReady.value = true }, 400)
- })
- const cardStyle = computed(() => ({
- opacity: pageReady.value ? 1 : 0,
- transform: pageReady.value ? 'scale(1) translateY(0)' : 'scale(0.92) translateY(-20px)',
- transition: 'all 0.5s cubic-bezier(0.34, 1.3, 0.64, 1)',
- }))
- const contentCardStyle = computed(() => ({
- opacity: contentReady.value ? 1 : 0,
- transform: contentReady.value ? 'translateY(0)' : 'translateY(40px)',
- transition: 'all 0.45s ease-out',
- }))
- onShareAppMessage(() => {
- return {
- userName: '小程序',
- path: 'pages/splash/splash?userId=' + cardInfo.value.userId,
- imageUrl: cardImage.value
- };
- });
- const makeCall = () => {
- if (cardInfo.value.phonenumber) {
- uni.makePhoneCall({
- phoneNumber: cardInfo.value.phonenumber
- })
- } else {
- uni.showToast({
- title: '暂无电话号码',
- icon: 'none'
- })
- }
- }
- </script>
- <style lang="scss" scoped>
- .card-container {
- background: #f5f6f8;
- }
- .left-title {
- font-size: 44rpx;
- font-weight: bold;
- color: #ffffff;
- text-shadow: 2px 2px 0 black;
- }
- .top-bg {
- width: 100%;
- position: fixed;
- top: 0;
- left: 0;
- z-index: 1;
- }
- // 顶部背景区域
- .header-bg {
- background: linear-gradient(135deg, #4A90E2 0%, #6FB3F2 50%, #87CEEB 100%);
- padding: 0 40rpx;
- padding-top: calc(var(--status-bar-height) + 20rpx);
- padding-bottom: 60rpx;
- position: relative;
- overflow: hidden;
- // 背景光效
- &::before {
- content: '';
- position: absolute;
- top: -100rpx;
- right: -100rpx;
- width: 500rpx;
- height: 500rpx;
- background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
- border-radius: 50%;
- }
- // 导航栏
- .nav-bar {
- display: flex;
- align-items: center;
- justify-content: space-between;
- height: 88rpx;
- position: relative;
- z-index: 10;
- .nav-back {
- width: 60rpx;
- height: 60rpx;
- display: flex;
- align-items: center;
- justify-content: center;
- }
- .nav-title {
- font-size: 32rpx;
- font-weight: 600;
- color: #ffffff;
- text-shadow: 0 2rpx 8rpx rgba(0, 0, 0, 0.1);
- }
- .nav-right {
- display: flex;
- align-items: center;
- .more-btn,
- .refresh-btn {
- width: 64rpx;
- height: 64rpx;
- border-radius: 50%;
- background: rgba(255, 255, 255, 0.15);
- display: flex;
- align-items: center;
- justify-content: center;
- margin-left: 16rpx;
- }
- }
- }
- }
- .page-top {
- margin: 0 24rpx 24rpx;
- }
- // 名片内容区域
- .card-content {
- margin: 0 24rpx;
- padding: 20rpx 40rpx;
- border-radius: 24rpx;
- background: #ffffff;
- box-shadow: 0 -2rpx 12rpx rgba(0, 0, 0, 0.04);
- position: relative;
- z-index: 2;
- }
- // 隐藏的 canvas 容器
- .hidden-canvas-box {
- position: fixed;
- left: -9999px;
- top: -9999px;
- width: 1px;
- height: 1px;
- overflow: hidden;
- }
- </style>
|