Compare commits

..

No commits in common. "a511a61fa860be3101122059355b4c1b03747c2e" and "a464432585b7b0983d8c7ffd98a9530b8ede9409" have entirely different histories.

2 changed files with 13 additions and 12 deletions

View File

@ -27,22 +27,22 @@
<view class="content-section"> <view class="content-section">
<view class="mine-actions grid col-4 text-center"> <view class="mine-actions grid col-4 text-center">
<button class="action-item contact-btn" @click="handleJiaoLiuQun"> <view class="action-item" @click="handleJiaoLiuQun">
<view class="iconfont icon-friendfill text-pink icon"></view> <view class="iconfont icon-friendfill text-pink icon"></view>
<text class="text">交流群</text> <text class="text">交流群</text>
</button> </view>
<button class="action-item contact-btn" open-type="contact"> <button class="action-item contact-btn" open-type="contact">
<view class="iconfont icon-service text-blue icon"></view> <view class="iconfont icon-service text-blue icon"></view>
<text class="text">在线客服</text> <text class="text">在线客服</text>
</button> </button>
<button class="action-item contact-btn" @click="handleBuilding"> <view class="action-item" @click="handleBuilding">
<view class="iconfont icon-community text-mauve icon"></view> <view class="iconfont icon-community text-mauve icon"></view>
<text class="text">反馈社区</text> <text class="text">反馈社区</text>
</button> </view>
<button class="action-item contact-btn" @click="handleBuilding"> <view class="action-item" @click="handleBuilding">
<view class="iconfont icon-dianzan text-green icon"></view> <view class="iconfont icon-dianzan text-green icon"></view>
<text class="text">点赞我们</text> <text class="text">点赞我们</text>
</button> </view>
</view> </view>
<view class="menu-list"> <view class="menu-list">
@ -216,11 +216,13 @@
.text { .text {
display: block; display: block;
font-size: 13px; font-size: 13px;
margin: 8px 0px;
} }
} }
.contact-btn { .contact-btn {
background: transparent; background: transparent;
line-height: 50rpx; line-height: 40rpx;
margin-top: 10rpx;
} }
} }
} }

View File

@ -82,7 +82,7 @@
<view v-if="item.content">{{ item.content }}</view> <view v-if="item.content">{{ item.content }}</view>
<view v-else>{{item.title.substring(0,2)}} ... </view> <view v-else>{{item.title.substring(0,2)}} ... </view>
<view v-if="item.numBadge>0 && !item.badge"> <view v-if="item.numBadge>0 && !item.badge">
<uni-badge :text="item.numBadge" type="error" size="mini" /> <uni-badge :text="item.numBadge" type="error" size="mini" />
</view> </view>
</view> </view>
</view> </view>
@ -138,7 +138,7 @@ export default {
msgType: 'notice', msgType: 'notice',
title: '系统通知', title: '系统通知',
badge: false, badge: false,
numBadge: null, // numBadge: 5, //
width: '40rpx' width: '40rpx'
}, },
{ {
@ -148,7 +148,7 @@ export default {
title: '活动中心', title: '活动中心',
msgType: 'event', msgType: 'event',
badge: false, badge: false,
numBadge: null, // numBadge: 25, //
width: '100rpx' width: '100rpx'
} }
], ],
@ -252,7 +252,7 @@ export default {
cancelText: '取消', cancelText: '取消',
confirmText: '确定', confirmText: '确定',
success: (res) => { success: (res) => {
removeBatch({msgType:item.msgType}).then(response => { removeBatch({msgType:"status"}).then(response => {
if (response.code === 200) { if (response.code === 200) {
this.getMsgOverview() this.getMsgOverview()
} }
@ -451,7 +451,6 @@ export default {
font-size: 26rpx; font-size: 26rpx;
color: #999; color: #999;
line-height: 1.4; line-height: 1.4;
max-height: 18.19px;
display: flex; display: flex;
align-items: center; align-items: center;
justify-content: space-between; justify-content: space-between;