hookehuyr

fix 警告提示

1 <!-- 1 <!--
2 * @Date: 2022-09-26 16:10:35 2 * @Date: 2022-09-26 16:10:35
3 * @LastEditors: hookehuyr hookehuyr@gmail.com 3 * @LastEditors: hookehuyr hookehuyr@gmail.com
4 - * @LastEditTime: 2022-10-28 15:45:35 4 + * @LastEditTime: 2022-11-01 17:46:29
5 * @FilePath: /swx/src/components/activity-bar.vue 5 * @FilePath: /swx/src/components/activity-bar.vue
6 * @Description: 活动详情页底部导航栏 6 * @Description: 活动详情页底部导航栏
7 --> 7 -->
8 <template> 8 <template>
9 <view class="activity-bar-page"> 9 <view class="activity-bar-page">
10 <van-row> 10 <van-row>
11 - <van-col span="5"> 11 + <van-col span="5" offset="0">
12 <view @tap="goTo('home')" class="home"> 12 <view @tap="goTo('home')" class="home">
13 <view style="height: 1.75rem;"> 13 <view style="height: 1.75rem;">
14 <van-icon :name="icon_home1" size="1.75rem" color="" /> 14 <van-icon :name="icon_home1" size="1.75rem" color="" />
...@@ -16,7 +16,7 @@ ...@@ -16,7 +16,7 @@
16 <view><text class="home-text">首页</text></view> 16 <view><text class="home-text">首页</text></view>
17 </view> 17 </view>
18 </van-col> 18 </van-col>
19 - <van-col span="19"> 19 + <van-col span="19" offset="0">
20 <!-- <view v-if="isEnd == 1"> 20 <!-- <view v-if="isEnd == 1">
21 <view class="activity-close"> 21 <view class="activity-close">
22 <view class="button">活动结束</view> 22 <view class="button">活动结束</view>
......
1 <!-- 1 <!--
2 * @Date: 2022-09-21 14:51:44 2 * @Date: 2022-09-21 14:51:44
3 * @LastEditors: hookehuyr hookehuyr@gmail.com 3 * @LastEditors: hookehuyr hookehuyr@gmail.com
4 - * @LastEditTime: 2022-11-01 17:38:01 4 + * @LastEditTime: 2022-11-01 17:43:48
5 * @FilePath: /swx/src/pages/my/index.vue 5 * @FilePath: /swx/src/pages/my/index.vue
6 * @Description: 我的页面 6 * @Description: 我的页面
7 --> 7 -->
...@@ -10,16 +10,16 @@ ...@@ -10,16 +10,16 @@
10 <view style="width: 100%; background-image: url(http://gyzs.onwall.cn/userinfo_bg-top%402x.png); background-size: contain; background-repeat: no-repeat;"> 10 <view style="width: 100%; background-image: url(http://gyzs.onwall.cn/userinfo_bg-top%402x.png); background-size: contain; background-repeat: no-repeat;">
11 <view style="height: 4rem; padding: 1rem;"> 11 <view style="height: 4rem; padding: 1rem;">
12 <van-row> 12 <van-row>
13 - <van-col span="18"> 13 + <van-col span="18" offset="0">
14 <view @tap="editUser" style="position: relative;"> 14 <view @tap="editUser" style="position: relative;">
15 - <van-image :round="true" width="4rem" height="4rem" :src="avatar" /> 15 + <van-image :round="true" width="4rem" height="4rem" :src="avatar" fit="" />
16 <view style="display: inline-block; position: absolute; top: 30%; left: 30%;"> 16 <view style="display: inline-block; position: absolute; top: 30%; left: 30%;">
17 <text style="font-size: 1.15rem;">{{ nickname }}</text> 17 <text style="font-size: 1.15rem;">{{ nickname }}</text>
18 <!-- <van-icon :name="icon_vip" size="1rem" color="" class="vip-icon" /> --> 18 <!-- <van-icon :name="icon_vip" size="1rem" color="" class="vip-icon" /> -->
19 </view> 19 </view>
20 </view> 20 </view>
21 </van-col> 21 </van-col>
22 - <van-col span="6"> 22 + <van-col span="6" offset="0">
23 <view @tap="myProject()" style="background-color: #DABE73; color: white; padding: 0.5rem 0; border-radius: 1rem; text-align: center; font-size: 0.9rem;margin-top: 1rem;">我的主办方</view> 23 <view @tap="myProject()" style="background-color: #DABE73; color: white; padding: 0.5rem 0; border-radius: 1rem; text-align: center; font-size: 0.9rem;margin-top: 1rem;">我的主办方</view>
24 </van-col> 24 </van-col>
25 </van-row> 25 </van-row>
......