Commit dc585fdd authored by 罗林杰's avatar 罗林杰

修改bug

parent 561fa7b6
...@@ -84,6 +84,9 @@ ...@@ -84,6 +84,9 @@
</view> </view>
</view> </view>
</view>
<view class="right" style="margin-top: 40rpx;">
<u-tag v-if="articleType == '0' && info.topic" plain plainFill :text="info.topic" type="success"/>
</view> </view>
<view v-if="info.userId == userInfo.businessId" class="right"> <view v-if="info.userId == userInfo.businessId" class="right">
<!-- 右上角的三个点--> <!-- 右上角的三个点-->
...@@ -405,10 +408,12 @@ ...@@ -405,10 +408,12 @@
} }
.right { .right {
position: absolute;
right: 30rpx;
view { view {
display: flex; display: flex;
height: 30rpx; height: 30rpx;
padding-top: 14rpx; padding-top: 6rpx;
text { text {
width: 8rpx; width: 8rpx;
......
...@@ -1110,6 +1110,7 @@ import {activityList, userActivityList} from "../../api/activity"; ...@@ -1110,6 +1110,7 @@ import {activityList, userActivityList} from "../../api/activity";
width: calc(26% - 10rpx); width: calc(26% - 10rpx);
height: 168rpx; height: 168rpx;
border-radius: 12rpx; border-radius: 12rpx;
margin-left: 10rpx;
} }
} }
.my-article-image-2{ .my-article-image-2{
......
...@@ -230,9 +230,11 @@ export default { ...@@ -230,9 +230,11 @@ export default {
title: '报名成功!', title: '报名成功!',
icon: 'none' icon: 'none'
}) })
setTimeout(() => {
this.show = false this.show = false
this.getUserInfo() this.getUserInfo()
this.getActivityDetail() this.getActivityDetail()
},500)
} else if(res.data.code !== 200){ } else if(res.data.code !== 200){
uni.showToast({ uni.showToast({
title: res.data.message, title: res.data.message,
......
...@@ -39,7 +39,7 @@ ...@@ -39,7 +39,7 @@
</view> </view>
</view> </view>
<view v-if="isTopicName" class="right"> <view v-if="isTopicName" class="right">
<u-tag plain plainFill :text="info.topic ? info.topic : '最近'" type="success"/> <u-tag v-if="info.topic" plain plainFill :text="info.topic" type="success"/>
</view> </view>
</view> </view>
</template> </template>
......
...@@ -90,7 +90,7 @@ ...@@ -90,7 +90,7 @@
<u-tag v-if="info.examStatus === '1'" plain plainFill text="审核通过" type="success"/> <u-tag v-if="info.examStatus === '1'" plain plainFill text="审核通过" type="success"/>
<u-tag @click="showRemarks(info)" v-if="info.examStatus === '2' || info.examStatus === '3'" plain plainFill text="未通过" type="error"/> <u-tag @click="showRemarks(info)" v-if="info.examStatus === '2' || info.examStatus === '3'" plain plainFill text="未通过" type="error"/>
</view> </view>
<view class="right"> <view v-if="info.memberId == userInfoId" class="right">
<!-- 右上角的三个点--> <!-- 右上角的三个点-->
<view @click="showSelect(info)"> <view @click="showSelect(info)">
<text></text> <text></text>
......
...@@ -178,7 +178,7 @@ ...@@ -178,7 +178,7 @@
<!-- 两个图标按钮 喜欢和不喜欢--> <!-- 两个图标按钮 喜欢和不喜欢-->
<view> <view>
<view class="footer-fixedlike" v-if="userData.selfMatchingStatus == null"> <view class="footer-fixedlike" v-if="userData.businessId != userInfoId ">
<view class="left"> <view class="left">
<image :src="baseUrl+'/user/like.png'" @click="like(userData.userId,baseUrl+'/user/like.png')" style="width: 100%;height: 100%;;" mode="aspectFill"></image> <image :src="baseUrl+'/user/like.png'" @click="like(userData.userId,baseUrl+'/user/like.png')" style="width: 100%;height: 100%;;" mode="aspectFill"></image>
</view> </view>
...@@ -250,6 +250,7 @@ ...@@ -250,6 +250,7 @@
articleContent:'', articleContent:'',
isInit: true, isInit: true,
showTabbar: true, showTabbar: true,
userInfoId: uni.getStorageSync('userInfo').businessId,
tipMsg: '', tipMsg: '',
isConfirm: false, isConfirm: false,
isCoinConfirm: false, isCoinConfirm: false,
......
...@@ -786,7 +786,7 @@ export default { ...@@ -786,7 +786,7 @@ export default {
<style lang="scss"> <style lang="scss">
.form{ .form{
padding-top: 20rpx; padding-top: 20rpx;
padding-left: 20rpx; padding-left: 40rpx;
padding-right: 20rpx; padding-right: 20rpx;
.form-title{ .form-title{
font-weight: bold; font-weight: bold;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment