activityDetail.vue 37 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192
  1. <template>
  2. <view class="common_page adffc" :style="{'min-height':h+'px', 'padding-top':mt+'px'}">
  3. <!-- Canvas组件,用于后台绘制海报,通过绝对定位移出屏幕外 -->
  4. <canvas canvas-id="posterCanvas"
  5. :style="{width: canvasWidth + 'px', height: canvasHeight + 'px', position: 'fixed', top: '-99999px', left: '0'}" />
  6. <cus-header title="公益活动详情" bgColor="transparent"></cus-header>
  7. <image src="https://oss.familydaf.cn/sxsnfile/20251218/811a8863a74d4ed9b86f68284eaff0c9.png" class="top_bg_img" mode="widthFix"></image>
  8. <view class="lunbo">
  9. <up-swiper
  10. :list="imgList"
  11. @change="e => current = e.current"
  12. :autoplay="true"
  13. :interval="2000"
  14. :duration="200"
  15. :circular="true"
  16. imgMode="scaleToFill"
  17. height="440rpx"
  18. >
  19. <template #indicator>
  20. <view class="indicator adf">
  21. <view class="indicator__dot" v-for="(item, index) in imgList" :key="index"
  22. :class="[index === current && 'indicator__dot--active']">
  23. </view>
  24. </view>
  25. </template>
  26. </up-swiper>
  27. </view>
  28. <view class="box box1">
  29. <view class="box1-top">
  30. <text class="box1-top-status" :class="{'end':activityInfo?.activeState==3}">{{statusCfg[activityInfo?.activeState]||'未知'}}</text>
  31. <text class="box1-top-title">{{activityInfo?.activityName||''}}</text>
  32. </view>
  33. <view class="box1-line" style="margin-top: 36rpx;"></view>
  34. <view class="box1-place adfacjb">
  35. <view class="box1-place-left adffcjb">
  36. <text>活动地点</text>
  37. <view class="addr">{{activityInfo?.provinceName||''}}{{activityInfo?.cityName||''}}{{activityInfo?.address||''}}</view>
  38. </view>
  39. <view class="box1-place-right">
  40. <image src="https://oss.familydaf.cn/sxsnfile/20251218/dc3034ff405549059cc52eac7479f0e0.png"></image>
  41. </view>
  42. </view>
  43. <view class="box1-line" style="margin-top: 24rpx;"></view>
  44. <view class="box1-member adfacjb">
  45. <view class="box1-member-left adffc">
  46. <text>招募人数</text>
  47. <view class="num"><text>{{activityInfo?.recruitmentNow}}</text> /{{activityInfo?.recruitmentMax||'不限'}}</view>
  48. </view>
  49. <view class="box1-member-right adffc" @tap="handleReviewMembers">
  50. <view class="review adfac">
  51. <text>查看报名人员</text>
  52. <image src="https://oss.familydaf.cn/sxsnfile/20251218/d22838b7cdae42b5a8e6ebfa01d06445.png"></image>
  53. </view>
  54. <view class="avatars">
  55. <up-avatar-group :urls="avatars" size="30" gap="0.4" :maxCount="3"></up-avatar-group>
  56. </view>
  57. </view>
  58. </view>
  59. <view class="box1-line" style="margin-top: 33rpx;"></view>
  60. <view class="box1-time adffc">
  61. <text>活动时间</text>
  62. <view class="text">{{activityInfo?.activityStartTime}} - {{activityInfo?.activityEndTime}}</view>
  63. </view>
  64. <view class="box1-line" style="margin-top: 30rpx;"></view>
  65. <view class="box1-need adffc">
  66. <text>报名要求</text>
  67. <template v-if="activityInfo?.activityLimit==1">
  68. <view class="text"><text>{{activityInfo?.valueLimit||0}}</text>爱心值</view>
  69. <view class="tip">{{activityInfo?.loveValueContent||''}}</view>
  70. </template>
  71. <template v-else-if="activityInfo?.activityLimit==2">
  72. <view class="text"><text>{{activityInfo?.valueLimit||0}}</text>张专享券</view>
  73. <view class="tip">{{activityInfo?.loveValueContent||''}}</view>
  74. </template>
  75. <template v-else-if="activityInfo?.activityLimit==3">
  76. <view class="text"><text>免费</text></view>
  77. <view class="tip"></view>
  78. </template>
  79. </view>
  80. <view class="box1-line" style="margin-top: 30rpx;"></view>
  81. <view class="box1-info adfacjb">
  82. <view class="box1-info-pre">
  83. <text>年龄限制</text>
  84. <view class="text" v-if="activityInfo?.userAgeMax">{{activityInfo?.userAgeMin}}岁 到 {{activityInfo?.userAgeMax}}岁</view>
  85. <view class="text" v-else>不限制</view>
  86. </view>
  87. <view class="box1-info-pre line">
  88. <text>可获得义工时长</text>
  89. <!-- typeId=='1977564860095348737'为义工活动,义工时长只有义工活动才有 -->
  90. <view class="hour" v-if="activityInfo?.typeId=='1977564860095348737'"><text>{{activityInfo?.serviceHours||0}}</text> 小时</view>
  91. <view class="hour" v-else>无</view>
  92. </view>
  93. </view>
  94. <view class="box1-line" style="margin-top: 30rpx;"></view>
  95. <view class="box1-info adfacjb">
  96. <view class="box1-info-pre">
  97. <text>联系人</text>
  98. <view class="text">{{activityInfo?.contact||''}}/{{activityInfo?.contactPhone||''}}</view>
  99. </view>
  100. <view class="box1-info-pre line">
  101. <text>公益合作</text>
  102. <view class="text">{{activityInfo?.channelName||''}}</view>
  103. </view>
  104. </view>
  105. </view>
  106. <view class="box box2">
  107. <view class="box-title">活动详情</view>
  108. <view class="box2-detail" v-if="activityInfo&&activityInfo.activityDetails">
  109. <up-read-more :toggle="true" showHeight="374rpx" color="#989998" fontSize="24rpx" openText="收起" closeText="展开" ref="uReadMore">
  110. <!-- <rich-text :nodes="activityInfo.activityDetails"></rich-text> -->
  111. <u-parse :content="activityInfo.activityDetails" @load="load"></u-parse>
  112. </up-read-more>
  113. </view>
  114. </view>
  115. <view class="bottom">
  116. <view class="time">
  117. 报名时间:{{activityInfo?.signupStartTime}} - {{activityInfo?.signupEndTime}}
  118. </view>
  119. <view class="btns adfacjb">
  120. <view class="left adffcacjc" @tap="showShareOptions">
  121. <up-icon name="share-square" color="#252525" size="48rpx"></up-icon>
  122. <text>分享</text>
  123. </view>
  124. <view class="right" @click="handleApply" v-if="activityInfo?.activeState==1&&activityInfo?.signupState==0">立即报名</view>
  125. <view class="right" @click="handleCancel" v-else-if="activityInfo?.activeState==1&&activityInfo?.signupState==1">取消报名</view>
  126. <view class="right" @click="handleSignup" v-else-if="activityInfo?.activeState==2&&activityInfo?.signupState==1">我要签到</view>
  127. <view class="right" @click="handleFill" v-else-if="activityInfo?.activeState==3&&activityInfo?.signupState==1">填写公益档案</view>
  128. <view class="right end" v-else-if="activityInfo?.activeState==0">活动未开始</view>
  129. <view class="right end" v-else-if="activityInfo?.activeState==1&&activityInfo?.signupState==2">活动已签到</view>
  130. <view class="right end" v-else-if="activityInfo?.activeState==2&&activityInfo?.signupState==0">活动进行中不可报名</view>
  131. <view class="right end" v-else-if="activityInfo?.activeState==3">活动已结束</view>
  132. <view class="right end" v-else-if="activityInfo?.activeState==4">已报满暂无活动名额</view>
  133. </view>
  134. </view>
  135. <view class="fail" v-if="fail">
  136. <view class="fbox adffcac">
  137. <image class="clock" src="https://oss.familydaf.cn/sxsnfile/20251218/4a47278697174d04bf54b8b691587a9c.png"></image>
  138. <image class="close" src="https://oss.familydaf.cn/sxsnfile/20251218/5e39649ad9d0433c96a491bd040413eb.png" @click="fail=false"></image>
  139. <image class="alert" src="https://oss.familydaf.cn/sxsnfile/20251218/39c584e1f7214b32aab2418272bb8678.png" mode="widthFix"></image>
  140. <view class="texts adffcacjc">
  141. <view class="text">您当前{{activityLimitCfg[activityInfo?.activityLimit]}}不足,无法报名活动</view>
  142. <view class="tip">欢迎联系专属客服,了解更多公益活动,积攒{{activityLimitCfg[activityInfo?.activityLimit]}}</view>
  143. </view>
  144. <image class="down" src="https://oss.familydaf.cn/sxsnfile/20251218/445791524423424da07755060a6d50ad.png"></image>
  145. <view class="user adfacjc">
  146. "善行少年"咨询微信
  147. </view>
  148. <view class="finfo adffcac">
  149. <view class="finfo-code adffcacjc">
  150. <image :src="imageUrl" :show-menu-by-longpress="true"></image>
  151. </view>
  152. <view class="finfo-title">长按识别二维码</view>
  153. <view class="finfo-tip">添加您的专属公益向导</view>
  154. <view class="finfo-btn" @click="toWebView">了解善行少年</view>
  155. <view class="finfo-zblj" @click="fail=false">暂不了解</view>
  156. </view>
  157. </view>
  158. </view>
  159. <view class="share" v-if="share">
  160. <view class="sbox">
  161. <view class="sbox-title">分享给好友</view>
  162. <image class="close" src="https://oss.familydaf.cn/sxsnfile/20251218/bbf9472f744741bf9fcf2a2d4c5c0f11.png" @click="share=false"></image>
  163. <view class="sbox-items adfac">
  164. <view class="sbox-items-pre adffcac">
  165. <button class="share-btn" open-type="share">
  166. <image src="https://oss.familydaf.cn/sxsnfile/20251218/9b409327172b42b5a165e1d4da631753.png"></image>
  167. <text>分享页面</text>
  168. </button>
  169. </view>
  170. <view class="sbox-items-pre adffcac" @click="generatePoster">
  171. <image src="https://oss.familydaf.cn/sxsnfile/20251218/8f7e9292eb054271a03cf5f7d63a6b25.png"></image>
  172. <text>生成海报</text>
  173. </view>
  174. <view class="sbox-items-pre adffcac" @click="shareToTimeline">
  175. <image src="https://oss.familydaf.cn/sxsnfile/20251218/b29cf7f4b77e44458c5abc01ca2ff56e.png"></image>
  176. <text>分享到朋友圈</text>
  177. </view>
  178. </view>
  179. </view>
  180. </view>
  181. <!-- 海报展示弹窗 -->
  182. <view class="posterbox adffcacjc" v-if="posterShow">
  183. <!-- 加载状态 -->
  184. <u-loading-icon v-if="posterLoading" text="海报生成中..." size="28" textSize="18" inactiveColor="#ffffff" color="#ffffff"></u-loading-icon>
  185. <!-- 海报生成后的内容 -->
  186. <template v-else>
  187. <!-- 此处不再使用HTML结构,而是直接显示生成的图片 -->
  188. <div class="posterbox-card adffcac">
  189. <image :src="posterUrl" mode="widthFix" class="poster-image"></image>
  190. </div>
  191. <div class="posterbox-menu adfacjb">
  192. <div class="posterbox-menu-pre adffcac" v-for="(item,index) in menuList" :key="index" @click="handleMenuClick(item.type)">
  193. <template v-if="index===0">
  194. <button class="share-btn" open-type="share">
  195. <image :src="item.img"></image>
  196. <text>{{item.title}}</text>
  197. </button>
  198. </template>
  199. <template v-else>
  200. <image :src="item.img"></image>
  201. <text>{{item.title}}</text>
  202. </template>
  203. </div>
  204. </div>
  205. <div class="posterbox-close adfacjc">
  206. <image src="https://oss.familydaf.cn/sxsnfile/20251218/44d55c9cb46a404d9dfc0e4ed106c69d.png" @click="posterShow=false"></image>
  207. </div>
  208. </template>
  209. </view>
  210. </view>
  211. </template>
  212. <script setup name="">
  213. import CusHeader from '@/components/CusHeader/index.vue'
  214. import { onLoad } from '@dcloudio/uni-app';
  215. import { ref, reactive, onMounted, getCurrentInstance ,nextTick } from 'vue'
  216. import { onShareAppMessage, onShareTimeline } from '@dcloudio/uni-app'
  217. const { proxy } = getCurrentInstance()
  218. const id = ref('')
  219. const activityInfo = ref(null)
  220. const statusCfg = ref({
  221. 0:'未开始',
  222. 1:'报名中',
  223. 4:'报名中',
  224. 2:'进行中',
  225. 3:'已结束'
  226. })
  227. const activityLimitCfg = ref({
  228. 1:'爱心值',
  229. 2:'专享券',
  230. 3:'免费'
  231. })
  232. const imgList = ref([])
  233. const current = ref(0)
  234. const detail = ref('')
  235. const avatars = ref([])
  236. const fail = ref(false)
  237. const share = ref(false)
  238. const uReadMore = ref()
  239. // --- 海报生成相关 ---
  240. const posterShow = ref(false) // 控制海报弹窗显示
  241. const posterLoading = ref(false) // 控制海报生成时的加载状态
  242. const posterUrl = ref('') // 存储生成的海报图片临时路径
  243. const canvasWidth = ref(0) // Canvas 宽度
  244. const canvasHeight = ref(0) // Canvas 高度
  245. // 海报上所需的动态数据
  246. const posterData = reactive({
  247. mainImg: 'https://sxsn.ringzle.com/happytree-admin/profile/2025/12/12/e8218de1-d059-4197-b677-f9d2e446971e.png',
  248. title: '《环保知识知多少》让孩子成为健康公益大使',
  249. time: '06.01-12:00 ~ 06.02-12:00',
  250. timeIcon: 'https://oss.familydaf.cn/sxsnfile/20251218/762878799914422d835e505291b9d4c6.png',
  251. address: '深圳市南山区南山街道丰潭路',
  252. addressIcon: 'https://oss.familydaf.cn/sxsnfile/20251218/57539643ab974aef9401d76818e1bf3b.png',
  253. organizer: '锦鲤俱乐部',
  254. organizerIcon: 'https://oss.familydaf.cn/sxsnfile/20251218/47953738adfc46d8b959d7cead7a186e.png',
  255. qrCode: 'https://oss.familydaf.cn/sxsnfile/20251218/4eeb3cf6799141c9853349533c33e529.jpg'
  256. })
  257. const imageUrl = ref('https://oss.familydaf.cn/sxsnfile/20251218/b25745272a52435194dbc3987d5645f2.png')
  258. const menuList = ref([
  259. { img:'https://oss.familydaf.cn/sxsnfile/20251218/533e0ec5511043c6853c4a05b720dadf.png',title:'发送给朋友', type:'shareApp' },
  260. { img:'https://oss.familydaf.cn/sxsnfile/20251218/43a1bf3fc87240a2b33359f10d9d4d19.png',title:'分享到朋友圈', type:'shareTimeline' },
  261. { img:'https://oss.familydaf.cn/sxsnfile/20251218/875a7d2a8f9e47cb813246879b2b0714.png',title:'收藏', type:'favorite' },
  262. { img:'https://oss.familydaf.cn/sxsnfile/20251218/125b3da887974ae2b600ce2ec72c1fbe.png',title:'保存图片', type:'save' },
  263. ])
  264. const load = () => {
  265. nextTick(()=>{
  266. proxy.$refs.uReadMore.init();
  267. })
  268. }
  269. const handleReviewMembers = () => {
  270. uni.navigateTo({
  271. url:'/pagesHome/recruitsNumber?activityId='+activityInfo.value?.id+'&recruitmentMax='+activityInfo.value?.recruitmentMax+'&recruitmentMin='+activityInfo.value?.recruitmentMin
  272. })
  273. }
  274. //立即报名
  275. const handleApply = async () => {
  276. let { loveValue, couponIds } = await getUserLoveTicket();
  277. let url = `/pagesHome/activityApply?activity=${encodeURIComponent(JSON.stringify(activityInfo.value))}`;
  278. if((activityInfo.value?.activityLimit==1&&loveValue<activityInfo?.value.valueLimit)
  279. ||(activityInfo.value?.activityLimit==2&&couponIds?.length<activityInfo?.value.valueLimit)){
  280. fail.value = true;
  281. return
  282. }
  283. uni.navigateTo({ url })
  284. }
  285. //取消报名
  286. const handleCancel = () => {
  287. uni.reLaunch({
  288. url:'/pages/nonprofit?type=1'
  289. })
  290. }
  291. //我要签到
  292. const handleSignup = () => {
  293. uni.reLaunch({
  294. url:'/pages/nonprofit?type=2'
  295. })
  296. }
  297. //填写公益档案
  298. const handleFill = () => {
  299. uni.reLaunch({
  300. url:'/pages/nonprofit?type=3'
  301. })
  302. }
  303. const getUserLoveTicket = () => {
  304. return new Promise(resolve=>{
  305. let userId = JSON.parse(uni.getStorageSync('userInfo'))?.id;
  306. proxy.$api.get(`/core/activity/signup/userAsset/${userId}/${activityInfo.value?.id}`).then(({data:res})=>{
  307. if(res.code!==0) return proxy.$showToast(res.msg)
  308. resolve({loveValue:res.data?.loveValue||0,couponIds:res.data?.couponIds||0})
  309. })
  310. })
  311. }
  312. onShareAppMessage((res) => {
  313. // 如果是点击海报菜单的“发送给朋友”按钮
  314. if (res.from === 'button' && res.target.id === 'posterShareBtn') {
  315. return {
  316. title: posterData.title,
  317. path: `/pagesHome/activityDetail?shareADId=${id.value}`,
  318. imageUrl: posterUrl.value // 使用生成的海报作为分享图
  319. };
  320. }
  321. // 默认页面右上角分享
  322. const sharerId = JSON.parse(uni.getStorageSync('userInfo'))?.id;
  323. return {
  324. title: activityInfo.value?.activityName || '发现一个好物,分享给你!',
  325. path: `/pagesHome/activityDetail?shareADId=${activityInfo.value?.id}&shareUserId=${sharerId}`,
  326. imageUrl: activityInfo.value?.coverFile
  327. };
  328. })
  329. onShareTimeline((res) => {
  330. const sharerId = JSON.parse(uni.getStorageSync('userInfo'))?.id;
  331. return {
  332. title: activityInfo.value?.activityName || '发现一个好物,分享给你!',
  333. query: `shareADId=${activityInfo.value?.id}&shareUserId=${sharerId}`,
  334. imageUrl: activityInfo.value?.coverFile
  335. };
  336. })
  337. const showShareOptions = () => {
  338. share.value = true;
  339. }
  340. // 分享到朋友圈(旧逻辑)
  341. const shareToTimeline = () => {
  342. uni.showModal({
  343. title:'温馨提示',
  344. content:'分享到朋友圈请点击页面右上方的“···”标志后选择“分享到朋友圈”进行分享'
  345. })
  346. }
  347. // --- Canvas海报生成核心逻辑 ---
  348. // 1. 触发生成
  349. const generatePoster = async () => {
  350. share.value = false;
  351. posterShow.value = true;
  352. posterLoading.value = true;
  353. posterUrl.value = ''; // 清空旧海报
  354. try {
  355. // 获取设备信息,用于rpx转px
  356. const systemInfo = uni.getSystemInfoSync();
  357. const screenWidth = systemInfo.screenWidth;
  358. const rpxRatio = screenWidth / 750;
  359. // --- 定义尺寸和坐标 (单位: px) ---
  360. // 卡片总宽度为 100% - 220rpx
  361. const cardWidth = screenWidth - 220 * rpxRatio;
  362. const cardPadding = 20 * rpxRatio;
  363. const contentWidth = cardWidth - cardPadding * 2;
  364. const mainImgHeight = 368 * rpxRatio;
  365. const infoTopMargin = 14 * rpxRatio;
  366. const qrCodeWidth = 123 * rpxRatio;
  367. const qrCodeHeight = 123 * rpxRatio;
  368. const rightPartWidth = 163 * rpxRatio;
  369. const leftPartWidth = contentWidth - rightPartWidth;
  370. // 计算总高度
  371. const titleHeight = calculateWrappedTextHeight(posterData.title, 24 * rpxRatio, contentWidth, 36 * rpxRatio);
  372. const infoBlockHeight = 160 * rpxRatio; // 估算下方信息区域高度
  373. const cardHeight = cardPadding * 2 + mainImgHeight + infoTopMargin + infoBlockHeight;
  374. canvasWidth.value = cardWidth;
  375. canvasHeight.value = cardHeight;
  376. // 等待一帧,确保canvas尺寸设置生效
  377. await new Promise(resolve => setTimeout(resolve, 50));
  378. const ctx = uni.createCanvasContext('posterCanvas', proxy);
  379. // --- 下载所有需要的图片 ---
  380. const [mainImg, timeIcon, addressIcon, orgIcon, qrCode] = await Promise.all([
  381. uni.getImageInfo({ src: posterData.mainImg }),
  382. uni.getImageInfo({ src: posterData.timeIcon }),
  383. uni.getImageInfo({ src: posterData.addressIcon }),
  384. uni.getImageInfo({ src: posterData.organizerIcon }),
  385. uni.getImageInfo({ src: posterData.qrCode }),
  386. ]);
  387. // --- 开始绘制 ---
  388. // 1. 绘制白色背景
  389. ctx.fillStyle = '#FFFFFF';
  390. ctx.fillRect(0, 0, cardWidth, cardHeight);
  391. // 2. 绘制主图 (带圆角)
  392. ctx.save(); // 保存当前画布状态
  393. const borderRadius = 16 * rpxRatio; // 16rpx
  394. // 创建圆角矩形路径
  395. ctx.beginPath();
  396. ctx.moveTo(cardPadding + borderRadius, cardPadding);
  397. ctx.lineTo(cardPadding + contentWidth - borderRadius, cardPadding);
  398. ctx.arcTo(cardPadding + contentWidth, cardPadding, cardPadding + contentWidth, cardPadding + borderRadius, borderRadius);
  399. ctx.lineTo(cardPadding + contentWidth, cardPadding + mainImgHeight - borderRadius);
  400. ctx.arcTo(cardPadding + contentWidth, cardPadding + mainImgHeight, cardPadding + contentWidth - borderRadius, cardPadding + mainImgHeight, borderRadius);
  401. ctx.lineTo(cardPadding + borderRadius, cardPadding + mainImgHeight);
  402. ctx.arcTo(cardPadding, cardPadding + mainImgHeight, cardPadding, cardPadding + mainImgHeight - borderRadius, borderRadius);
  403. ctx.lineTo(cardPadding, cardPadding + borderRadius);
  404. ctx.arcTo(cardPadding, cardPadding, cardPadding + borderRadius, cardPadding, borderRadius);
  405. ctx.closePath();
  406. ctx.clip(); // 裁剪后续绘图到此路径
  407. ctx.drawImage(mainImg.path, cardPadding, cardPadding, contentWidth, mainImgHeight);
  408. ctx.restore(); // 恢复画布状态 (移除裁剪路径)
  409. let currentY = cardPadding + mainImgHeight + infoTopMargin;
  410. // 3. 绘制左侧信息
  411. const leftX = cardPadding;
  412. // 3.1 绘制标题 (自动换行)
  413. ctx.font = `bold ${Math.round(24 * rpxRatio)}px "PingFang-SC", sans-serif`;
  414. ctx.fillStyle = '#252525';
  415. currentY += drawWrappedText(ctx, posterData.title, leftX, currentY + 24 * rpxRatio, leftPartWidth, 36 * rpxRatio, 1);
  416. currentY += 12 * rpxRatio; // 标题和下方内容的间距
  417. // 3.2 绘制时间
  418. const iconSize = 24 * rpxRatio;
  419. const textLeftMargin = 10 * rpxRatio;
  420. const infoLineHeight = 36 * rpxRatio;
  421. ctx.drawImage(timeIcon.path, leftX, currentY + (infoLineHeight - iconSize) / 2, iconSize, iconSize);
  422. ctx.font = `bold ${Math.round(20 * rpxRatio)}px "PingFang-SC", sans-serif`;
  423. ctx.fillStyle = '#8B8B8B';
  424. ctx.fillText(posterData.time, leftX + iconSize + textLeftMargin, currentY + 25 * rpxRatio);
  425. currentY += infoLineHeight;
  426. // 3.3 绘制地点
  427. ctx.drawImage(addressIcon.path, leftX, currentY + (infoLineHeight - iconSize) / 2, iconSize, iconSize);
  428. ctx.fillText(posterData.address, leftX + iconSize + textLeftMargin, currentY + 25 * rpxRatio);
  429. currentY += infoLineHeight;
  430. // 3.4 绘制俱乐部
  431. const orgIconSize = 30 * rpxRatio;
  432. ctx.drawImage(orgIcon.path, leftX, currentY + (infoLineHeight - orgIconSize) / 2, orgIconSize, orgIconSize);
  433. ctx.fillText(posterData.organizer, leftX + orgIconSize + textLeftMargin, currentY + 25 * rpxRatio);
  434. // 4. 绘制右侧二维码
  435. const rightX = cardPadding + leftPartWidth;
  436. const qrY = cardPadding + mainImgHeight + infoTopMargin;
  437. ctx.drawImage(qrCode.path, rightX + (rightPartWidth - qrCodeWidth) / 2, qrY, qrCodeWidth, qrCodeHeight);
  438. // 4.1 绘制二维码下方文字
  439. ctx.textAlign = 'center';
  440. ctx.font = `bold ${Math.round(20 * rpxRatio)}px "PingFang-SC", sans-serif`;
  441. ctx.fillStyle = '#8B8B8B';
  442. ctx.fillText('微信扫一扫', rightX + rightPartWidth / 2, qrY + qrCodeHeight + 30 * rpxRatio);
  443. ctx.textAlign = 'left'; // 恢复默认
  444. // --- 生成图片 ---
  445. ctx.draw(false, () => {
  446. uni.canvasToTempFilePath({
  447. canvasId: 'posterCanvas',
  448. success: (res) => {
  449. posterUrl.value = res.tempFilePath;
  450. posterLoading.value = false;
  451. },
  452. fail: (err) => {
  453. console.error('canvasToTempFilePath failed:', err);
  454. proxy.$showToast('海报生成失败,请稍后再试');
  455. posterLoading.value = false;
  456. posterShow.value = false;
  457. }
  458. }, proxy);
  459. });
  460. } catch (error) {
  461. console.error('generatePoster failed:', error);
  462. proxy.$showToast('图片资源加载失败,无法生成海报');
  463. posterLoading.value = false;
  464. posterShow.value = false;
  465. }
  466. }
  467. // Canvas 文本换行绘制函数
  468. // ctx: canvas context, text: 文本, x,y: 起始坐标, maxWidth: 最大宽度, lineHeight: 行高, maxLines: 最大行数
  469. function drawWrappedText(ctx, text, x, y, maxWidth, lineHeight, maxLines = 2) {
  470. let lines = [];
  471. let currentLine = '';
  472. let totalHeight = 0;
  473. for (let i = 0; i < text.length; i++) {
  474. let char = text[i];
  475. let testLine = currentLine + char;
  476. let metrics = ctx.measureText(testLine);
  477. let testWidth = metrics.width;
  478. if (testWidth > maxWidth && i > 0) {
  479. lines.push(currentLine);
  480. currentLine = char;
  481. } else {
  482. currentLine = testLine;
  483. }
  484. }
  485. lines.push(currentLine);
  486. if (lines.length > maxLines) {
  487. lines = lines.slice(0, maxLines);
  488. lines[maxLines - 1] += '...';
  489. }
  490. for (let j = 0; j < lines.length; j++) {
  491. ctx.fillText(lines[j], x, y + j * lineHeight);
  492. totalHeight += lineHeight;
  493. }
  494. return totalHeight;
  495. }
  496. // 辅助函数,用于估算换行后的文本高度
  497. function calculateWrappedTextHeight(text, fontSize, maxWidth, lineHeight) {
  498. // 这是一个简化的估算,实际应使用canvas.measureText
  499. const charsPerLine = Math.floor(maxWidth / (fontSize * 1.1));
  500. const lines = Math.ceil(text.length / charsPerLine);
  501. return lines * lineHeight;
  502. }
  503. // --- 海报下方菜单点击事件 ---
  504. const handleMenuClick = (type) => {
  505. switch(type) {
  506. case 'shareApp':
  507. break;
  508. case 'shareTimeline':
  509. // 同上,提示用户
  510. uni.showToast({ title: '请点击右上角“···”分享到朋友圈', icon: 'none' });
  511. break;
  512. case 'favorite':
  513. uni.showModal({
  514. title: '收藏提示',
  515. content: "请点击右上角 '...' 按钮,然后选择 '添加到我的小程序' 或 '收藏',即可方便下次访问哦!",
  516. showCancel: false, // 通常只保留一个“我知道了”按钮
  517. confirmText: '我知道了'
  518. });
  519. break;
  520. case 'save':
  521. // 保存图片到相册
  522. savePosterToAlbum();
  523. break;
  524. }
  525. }
  526. // 保存海报到相册
  527. const savePosterToAlbum = () => {
  528. if (!posterUrl.value) {
  529. proxy.$showToast('海报图片不存在');
  530. return;
  531. }
  532. uni.saveImageToPhotosAlbum({
  533. filePath: posterUrl.value,
  534. success: () => {
  535. proxy.$showToast('海报已保存到相册');
  536. },
  537. fail: (err) => {
  538. if (err.errMsg.includes('auth deny') || err.errMsg.includes('auth denied')) {
  539. uni.showModal({
  540. title: '授权提示',
  541. content: '需要您授权保存图片到相册',
  542. showCancel: false,
  543. success: () => {
  544. uni.openSetting(); //引导用户去设置页
  545. }
  546. })
  547. } else {
  548. proxy.$showToast('保存失败,请稍后再试');
  549. }
  550. }
  551. })
  552. }
  553. const toWebView = () => {
  554. uni.navigateTo({
  555. url:'/pages/webView?src=https://mp.weixin.qq.com/s/-oQlSBucYU_ifgd1j6eL3A?scene=1&click_id=2'
  556. })
  557. }
  558. const getActivityDetail = (id) => {
  559. proxy.$api.get(`/core/activity/${id}`).then(({data:res})=>{
  560. if(res.code!==0) return proxy.$showToast(res.msg)
  561. activityInfo.value = res.data;
  562. // 更新海报数据
  563. posterData.title = activityInfo.value?.activityName || posterData.title;
  564. posterData.time = `${new Date(activityInfo.value?.activityStartTime).Format('MM.dd-hh:mm') } ~ ${new Date(activityInfo.value?.activityEndTime).Format('MM.dd-hh:mm')}` || posterData.time;
  565. posterData.address = `${activityInfo.value?.provinceName||''}${activityInfo.value?.cityName||''}${activityInfo.value?.address||''}` || posterData.address;
  566. posterData.organizer = activityInfo.value?.channelName || posterData.organizer;
  567. if(activityInfo.value?.coverFile) posterData.mainImg = activityInfo.value?.coverFile;
  568. if(activityInfo.value.signupState==0
  569. &&activityInfo.value.activeState===1
  570. &&activityInfo.value.recruitmentNow==(activityInfo.value.recruitmentMax||99999)){
  571. activityInfo.value.activeState = 4;//已报满暂无活动名额
  572. }
  573. imgList.value = activityInfo.value?.imageFiles&&(activityInfo.value?.imageFiles.split(',')||[])
  574. for(let i=0;i<activityInfo.value.recruitmentNow;i++){
  575. avatars.value.push('https://oss.familydaf.cn/sxsnfile/20251218/0a35e90f0fd543a1afa4e4bd7fc9b2f6.png')
  576. }
  577. })
  578. }
  579. onLoad(options=>{
  580. id.value = options?.id||options?.shareADId||'';
  581. if(id.value) {
  582. getActivityDetail(id.value)
  583. }
  584. })
  585. </script>
  586. <style scoped lang="scss">
  587. ::v-deep .indicator__dot{
  588. width: 48rpx;
  589. height: 4rpx;
  590. background: #E2E5E9;
  591. border-radius: 2rpx;
  592. margin: 0 8rpx;
  593. }
  594. ::v-deep .indicator__dot--active{
  595. width: 48rpx;
  596. height: 4rpx;
  597. background: #00AE57;
  598. border-radius: 2rpx;
  599. }
  600. ::v-deep .u-swiper__wrapper__item__wrapper__image{
  601. border-radius: 24rpx !important;
  602. }
  603. /* 按钮分享样式 */
  604. .share-btn {
  605. background-color: transparent;
  606. border: none;
  607. padding: 0;
  608. margin: 0;
  609. line-height: 1;
  610. display: flex;
  611. flex-direction: column;
  612. justify-content: center;
  613. align-items: center;
  614. &::after {
  615. border: none;
  616. }
  617. }
  618. .common_page{
  619. padding-bottom: 276rpx;
  620. .lunbo{
  621. width: 100%;
  622. height: 440rpx;
  623. margin-top: 20rpx;
  624. position: relative;
  625. }
  626. .box{
  627. background: linear-gradient(45deg,#FFFFFF 70%,#F2FFE8 100%);
  628. border-radius: 24rpx;
  629. padding: 36rpx 24rpx 30rpx;
  630. margin-top: 20rpx;
  631. position: relative;
  632. &-title{
  633. width: 170rpx;
  634. height: 44rpx;
  635. padding-left: 2rpx;
  636. font-family: PingFang-SC, PingFang-SC;
  637. font-weight: 800;
  638. font-size: 36rpx;
  639. color: #151B29;
  640. line-height: 36rpx;
  641. background-image: url('https://oss.familydaf.cn/sxsnfile/20251218/6198fa26a7ff4fc1bce530fbdfaa20db.png');
  642. background-size: 170rpx 31rpx;
  643. background-position: 0 20rpx;
  644. background-repeat: no-repeat;
  645. }
  646. }
  647. .box1{
  648. &-top{
  649. &-status{
  650. padding: 10rpx 20rpx;
  651. background: url('https://oss.familydaf.cn/sxsnfile/20251218/5b591d1c173943dca6e33f950714e5e2.png') no-repeat;
  652. background-size: 100% 100%;
  653. font-family: PingFang-SC, PingFang-SC;
  654. font-weight: bold;
  655. font-size: 24rpx;
  656. color: #151B29;
  657. line-height: 33rpx;
  658. &.end{
  659. background: linear-gradient( 270deg, #FD8A8A 0%, #FE6161 100%);
  660. border-radius: 16px 4px 16px 4px;
  661. color: #FFFFFF;
  662. }
  663. }
  664. &-title{
  665. font-family: PingFang-SC, PingFang-SC;
  666. font-weight: bold;
  667. font-size: 36rpx;
  668. color: #151B29;
  669. line-height: 54rpx;
  670. margin-left: 10rpx;
  671. }
  672. }
  673. &-line{
  674. width: 100%;
  675. height: 1rpx;
  676. background: #E7E7E7;
  677. }
  678. &-place{
  679. &-left{
  680. width: calc(100% - 228rpx);
  681. text{
  682. font-family: PingFangSC, PingFang SC;
  683. font-weight: 400;
  684. font-size: 24rpx;
  685. color: #989998;
  686. line-height: 26rpx;
  687. }
  688. .addr{
  689. width: 100%;
  690. font-family: PingFang-SC, PingFang-SC;
  691. font-weight: bold;
  692. font-size: 26rpx;
  693. color: #151B29;
  694. line-height: 26rpx;
  695. margin-top: 24rpx;
  696. }
  697. }
  698. &-right{
  699. width: 188rpx;
  700. height: 115rpx;
  701. image{
  702. width: 100%;
  703. height: 100%;
  704. }
  705. }
  706. }
  707. &-member{
  708. margin-top: 37rpx;
  709. &-left{
  710. &>text{
  711. font-family: PingFangSC, PingFang SC;
  712. font-weight: 400;
  713. font-size: 24rpx;
  714. color: #989998;
  715. line-height: 26rpx;
  716. }
  717. .num{
  718. font-family: PingFang-SC, PingFang-SC;
  719. font-weight: bold;
  720. font-size: 26rpx;
  721. color: #676775;
  722. line-height: 48rpx;
  723. margin-top: 25rpx;
  724. text{
  725. font-size: 36rpx;
  726. color: #151B29;
  727. }
  728. }
  729. }
  730. &-right{
  731. .review{
  732. text{
  733. font-family: PingFangSC, PingFang SC;
  734. font-weight: 400;
  735. font-size: 24rpx;
  736. color: #989998;
  737. line-height: 26rpx;
  738. }
  739. image{
  740. width: 28rpx;
  741. height: 28rpx;
  742. margin-left: 8rpx;
  743. }
  744. }
  745. .avatars{
  746. margin-top: 27rpx;
  747. display: flex;
  748. justify-content: flex-end;
  749. }
  750. }
  751. }
  752. &-time{
  753. margin-top: 30rpx;
  754. text{
  755. font-family: PingFangSC, PingFang SC;
  756. font-weight: 400;
  757. font-size: 24rpx;
  758. color: #989998;
  759. line-height: 26rpx;
  760. }
  761. .text{
  762. font-family: PingFang-SC, PingFang-SC;
  763. font-weight: bold;
  764. font-size: 26rpx;
  765. color: #151B29;
  766. line-height: 26rpx;
  767. margin-top: 24rpx;
  768. }
  769. }
  770. &-need{
  771. margin-top: 30rpx;
  772. &>text{
  773. font-family: PingFangSC, PingFang SC;
  774. font-weight: 400;
  775. font-size: 24rpx;
  776. color: #989998;
  777. line-height: 26rpx;
  778. }
  779. .text{
  780. margin-top: 30rpx;
  781. font-family: PingFangSC, PingFang SC;
  782. font-weight: 400;
  783. font-size: 24rpx;
  784. color: #676775;
  785. line-height: 26rpx;
  786. text{
  787. font-weight: bold;
  788. font-size: 36rpx;
  789. color: #151B29;
  790. }
  791. }
  792. .tip{
  793. font-family: PingFangSC, PingFang SC;
  794. font-weight: 400;
  795. font-size: 24rpx;
  796. color: #C9A771;
  797. line-height: 26rpx;
  798. margin-top: 20rpx;
  799. }
  800. }
  801. &-info{
  802. margin-top: 30rpx;
  803. &-pre{
  804. width: 50%;
  805. &.line{
  806. border-left: 1rpx solid #E7E7E7;
  807. padding-left: 24rpx;
  808. box-sizing: border-box;
  809. }
  810. &>text{
  811. font-family: PingFangSC, PingFang SC;
  812. font-weight: 400;
  813. font-size: 24rpx;
  814. color: #989998;
  815. line-height: 26rpx;
  816. }
  817. .text{
  818. font-family: PingFang-SC, PingFang-SC;
  819. font-weight: bold;
  820. font-size: 26rpx;
  821. color: #151B29;
  822. line-height: 26rpx;
  823. margin-top: 24rpx;
  824. }
  825. .hour{
  826. margin-top: 24rpx;
  827. font-family: PingFangSC, PingFang SC;
  828. font-weight: 400;
  829. font-size: 24rpx;
  830. color: #676775;
  831. line-height: 26rpx;
  832. text{
  833. font-weight: bold;
  834. font-size: 36rpx;
  835. color: #151B29;
  836. }
  837. }
  838. }
  839. }
  840. }
  841. .box2{
  842. &-detail{
  843. margin-top: 40rpx;
  844. }
  845. }
  846. .bottom{
  847. width: 100%;
  848. height: 256rpx;
  849. background: #FFFFFF;
  850. box-shadow: 0rpx -2rpx 8rpx 0rpx rgba(178,178,178,0.1);
  851. position: fixed;
  852. left: 0;
  853. right: 0;
  854. bottom: 0;
  855. padding: 30rpx 24rpx 0;
  856. box-sizing: border-box;
  857. .time{
  858. padding: 19rpx 24rpx 12rpx;
  859. background: #F8F8F9;
  860. border-radius: 32rpx;
  861. font-family: PingFangSC, PingFang SC;
  862. font-weight: 400;
  863. font-size: 24rpx;
  864. color: #4B545C;
  865. line-height: 33rpx;
  866. }
  867. .btns{
  868. margin-top: 24rpx;
  869. .left{
  870. margin-left: 30rpx;
  871. text{
  872. font-family: PingFangSC, PingFang SC;
  873. font-weight: 400;
  874. font-size: 26rpx;
  875. color: #151B29;
  876. line-height: 26rpx;
  877. margin-top: 17rpx;
  878. }
  879. }
  880. .right{
  881. width: 540rpx;
  882. height: 90rpx;
  883. background: #B7F358;
  884. border-radius: 45rpx;
  885. font-family: PingFang-SC, PingFang-SC;
  886. font-weight: bold;
  887. font-size: 32rpx;
  888. color: #151B29;
  889. line-height: 90rpx;
  890. text-align: center;
  891. letter-spacing: 2rpx;
  892. &.end{
  893. background: #F7F7F7;
  894. }
  895. }
  896. }
  897. }
  898. .fail{
  899. position: fixed;
  900. left: 0;
  901. right: 0;
  902. top: 0;
  903. bottom: 0;
  904. background: rgba(0,0,0,0.4);
  905. display: flex;
  906. flex-direction: column;
  907. justify-content: flex-end;
  908. .fbox{
  909. background: #FFFFFF;
  910. background-image: url('https://oss.familydaf.cn/sxsnfile/20251218/f168e863e60b423588821f8aa0388e27.png');
  911. background-repeat: no-repeat;
  912. background-position: top left;
  913. background-size: 100% 399rpx;
  914. border-radius: 24rpx 24rpx 0 0;
  915. position: relative;
  916. padding: 40rpx 30rpx 123rpx;
  917. .clock{
  918. width: 219rpx;
  919. height: 143rpx;
  920. position: absolute;
  921. left: 51rpx;
  922. top: -37rpx;
  923. }
  924. .close{
  925. width: 40rpx;
  926. height: 40rpx;
  927. position: absolute;
  928. top: 40rpx;
  929. right: 36rpx;
  930. }
  931. .alert{
  932. width: 212rpx;
  933. }
  934. .texts{
  935. width: 100%;
  936. margin-top: 69rpx;
  937. background: #FFFFFF;
  938. border-radius: 24rpx;
  939. border: 1rpx dotted #979797;
  940. padding: 36rpx 0;
  941. .text{
  942. font-family: PingFang-SC, PingFang-SC;
  943. font-weight: bold;
  944. font-size: 36rpx;
  945. color: #252525;
  946. line-height: 36rpx;
  947. }
  948. .tip{
  949. font-family: PingFangSC, PingFang SC;
  950. font-weight: 400;
  951. font-size: 24rpx;
  952. color: #676775;
  953. line-height: 26rpx;
  954. margin-top: 24rpx;
  955. }
  956. }
  957. .down{
  958. width: 514rpx;
  959. height: 34rpx;
  960. margin-top: 20rpx;
  961. }
  962. .user{
  963. width: 100%;
  964. margin-top: 50rpx;
  965. box-sizing: border-box;
  966. font-family: PingFang-SC, PingFang-SC;
  967. font-weight: bold;
  968. font-size: 32rpx;
  969. color: #252525;
  970. line-height: 32rpx;
  971. }
  972. .finfo{
  973. width: 100%;
  974. margin-top: 36rpx;
  975. &-code{
  976. width: 310rpx;
  977. height: 310rpx;
  978. background: #FFFFFF;
  979. border: 3rpx solid #C5E3FE;
  980. image{
  981. width: 244rpx;
  982. height: 244rpx;
  983. }
  984. }
  985. &-title{
  986. margin-top: 24rpx;
  987. font-size: 28rpx;
  988. color: #252525;
  989. line-height: 40rpx;
  990. }
  991. &-tip{
  992. margin-top: 10rpx;
  993. font-size: 24rpx;
  994. color: #656775;
  995. line-height: 40rpx;
  996. }
  997. &-btn{
  998. width: calc(100% - 20rpx);
  999. height: 90rpx;
  1000. background: #B7F358;
  1001. border-radius: 45rpx;
  1002. font-family: PingFang-SC, PingFang-SC;
  1003. font-weight: bold;
  1004. font-size: 32rpx;
  1005. color: #151B29;
  1006. line-height: 90rpx;
  1007. text-align: center;
  1008. margin-top: 48rpx;
  1009. }
  1010. &-zblj{
  1011. font-family: PingFangSC, PingFang SC;
  1012. font-weight: 400;
  1013. font-size: 28rpx;
  1014. color: #989998;
  1015. line-height: 40rpx;
  1016. margin-top: 48rpx;
  1017. padding-bottom: 5rpx;
  1018. border-bottom: 1rpx solid #989998;
  1019. }
  1020. }
  1021. }
  1022. }
  1023. .share{
  1024. position: fixed;
  1025. left: 0;
  1026. right: 0;
  1027. top: 0;
  1028. bottom: 0;
  1029. z-index: 1000;
  1030. background: rgba(0,0,0,0.4);
  1031. display: flex;
  1032. flex-direction: column;
  1033. justify-content: flex-end;
  1034. .sbox{
  1035. position: relative;
  1036. background: #FFFFFF;
  1037. border-radius: 24rpx 24rpx 0rpx 0rpx;
  1038. padding: 50rpx 30rpx 148rpx;
  1039. &-title{
  1040. font-family: PingFang-SC, PingFang-SC;
  1041. font-weight: bold;
  1042. font-size: 36rpx;
  1043. color: #151B29;
  1044. line-height: 36rpx;
  1045. text-align: center;
  1046. }
  1047. .close{
  1048. width: 27rpx;
  1049. height: 27rpx;
  1050. position: absolute;
  1051. top: 50rpx;
  1052. right: 40rpx;
  1053. }
  1054. &-items{
  1055. margin-top: 88rpx;
  1056. &-pre{
  1057. width: calc(100% / 3);
  1058. image{
  1059. width: 94rpx;
  1060. height: 94rpx;
  1061. }
  1062. text{
  1063. font-family: PingFangSC, PingFang SC;
  1064. font-weight: 400;
  1065. font-size: 26rpx;
  1066. color: #252525;
  1067. line-height: 26rpx;
  1068. text-align: center;
  1069. margin-top: 24rpx;
  1070. }
  1071. }
  1072. }
  1073. }
  1074. }
  1075. .posterbox{
  1076. position: fixed;
  1077. left: 0;
  1078. right: 0;
  1079. top: 0;
  1080. bottom: 0;
  1081. z-index: 1001;
  1082. background: rgba(0,0,0,0.7);
  1083. .posterbox-card{
  1084. width: calc(100% - 220rpx);
  1085. .poster-image {
  1086. width: 100%;
  1087. border-radius: 8px; // 给生成的图片也加个圆角,更美观
  1088. }
  1089. }
  1090. &-menu{
  1091. width: 100%;
  1092. margin-top: 239rpx;
  1093. &-pre{
  1094. width: 25%;
  1095. image{
  1096. width: 103rpx;
  1097. height: 104rpx;
  1098. }
  1099. text{
  1100. font-family: PingFangSC, PingFang SC;
  1101. font-weight: 400;
  1102. font-size: 24rpx;
  1103. color: rgba(255,255,255,0.6);
  1104. line-height: 33rpx;
  1105. margin-top: 32rpx;
  1106. }
  1107. }
  1108. }
  1109. &-close{
  1110. margin-top: 58rpx;
  1111. image{
  1112. width: 64rpx;
  1113. height: 64rpx;
  1114. }
  1115. }
  1116. }
  1117. }
  1118. </style>