hookehuyr

fix(SharePoster): 修改分享海报标题为分享课程并移除关闭按钮

移除冗余的关闭按钮以简化界面,同时将标题从“分享海报”更改为“分享课程”以更准确地描述功能
...@@ -9,7 +9,7 @@ ...@@ -9,7 +9,7 @@
9 <div class="PosterWrapper p-4"> 9 <div class="PosterWrapper p-4">
10 <!-- 标题与关闭按钮 --> 10 <!-- 标题与关闭按钮 -->
11 <div class="flex justify-between items-center mb-3"> 11 <div class="flex justify-between items-center mb-3">
12 - <h3 class="font-medium">分享海报</h3> 12 + <h3 class="font-medium">分享课程</h3>
13 <van-icon name="cross" @click="close" /> 13 <van-icon name="cross" @click="close" />
14 </div> 14 </div>
15 15
...@@ -44,9 +44,9 @@ ...@@ -44,9 +44,9 @@
44 44
45 <!-- 底部提示与关闭按钮 --> 45 <!-- 底部提示与关闭按钮 -->
46 <div class="mt-3 text-center text-gray-500 text-xs">长按图片保存至手机</div> 46 <div class="mt-3 text-center text-gray-500 text-xs">长按图片保存至手机</div>
47 - <div class="mt-4"> 47 + <!-- <div class="mt-4">
48 <button class="w-full bg-white border border-green-500 text-green-600 py-2 rounded-lg" @click="close">关闭</button> 48 <button class="w-full bg-white border border-green-500 text-green-600 py-2 rounded-lg" @click="close">关闭</button>
49 - </div> 49 + </div> -->
50 </div> 50 </div>
51 </van-popup> 51 </van-popup>
52 <van-back-top right="5vw" bottom="25vh" offset="600" /> 52 <van-back-top right="5vw" bottom="25vh" offset="600" />
......