Showing
3 changed files
with
4 additions
and
4 deletions
| ... | @@ -8,7 +8,7 @@ | ... | @@ -8,7 +8,7 @@ |
| 8 | z-index: 1; | 8 | z-index: 1; |
| 9 | position: absolute; | 9 | position: absolute; |
| 10 | top: 4rem; | 10 | top: 4rem; |
| 11 | - transform: translateX(55%); | 11 | + transform: translateX(calc(50%)); |
| 12 | } | 12 | } |
| 13 | .success-info { | 13 | .success-info { |
| 14 | position: absolute; | 14 | position: absolute; | ... | ... |
| 1 | <!-- | 1 | <!-- |
| 2 | * @Date: 2022-09-28 11:52:13 | 2 | * @Date: 2022-09-28 11:52:13 |
| 3 | * @LastEditors: hookehuyr hookehuyr@gmail.com | 3 | * @LastEditors: hookehuyr hookehuyr@gmail.com |
| 4 | - * @LastEditTime: 2022-10-20 15:58:00 | 4 | + * @LastEditTime: 2022-11-03 11:14:36 |
| 5 | * @FilePath: /swx/src/pages/joinSuccess/index.vue | 5 | * @FilePath: /swx/src/pages/joinSuccess/index.vue |
| 6 | * @Description: 文件描述 | 6 | * @Description: 文件描述 |
| 7 | --> | 7 | --> |
| 8 | <template> | 8 | <template> |
| 9 | <view class="join-success-page"> | 9 | <view class="join-success-page"> |
| 10 | <view class="success-icon"> | 10 | <view class="success-icon"> |
| 11 | - <van-image width="12rem" height="12rem" fit="contain" | 11 | + <van-image width="12rem" height="12rem" fit="contain" :src="image_success" /> |
| 12 | - src="https://tva1.sinaimg.cn/large/5f01a858gy1h6m8rrcoywj208c07maav.jpg" /> | ||
| 13 | </view> | 12 | </view> |
| 14 | <view class="success-info"> | 13 | <view class="success-info"> |
| 15 | <view class="text">报名成功</view> | 14 | <view class="text">报名成功</view> |
| ... | @@ -24,6 +23,7 @@ import { ref, onMounted } from "vue"; | ... | @@ -24,6 +23,7 @@ import { ref, onMounted } from "vue"; |
| 24 | import Taro from '@tarojs/taro' | 23 | import Taro from '@tarojs/taro' |
| 25 | import { getCurrentPageParam } from "@/utils/weapp"; | 24 | import { getCurrentPageParam } from "@/utils/weapp"; |
| 26 | import { activityInfoAPI } from '@/api/Host/index'; | 25 | import { activityInfoAPI } from '@/api/Host/index'; |
| 26 | +import image_success from '@/images/chenggong@2x.png' | ||
| 27 | 27 | ||
| 28 | // 打开朋友圈分享 | 28 | // 打开朋友圈分享 |
| 29 | wx.showShareMenu({ | 29 | wx.showShareMenu({ | ... | ... |
-
Please register or login to post a comment