Browse Source

修复小程序用户信息页面按钮实现的bug

master
xsx 1 year ago
parent
commit
41a98fa186
  1. 6
      im-uniapp/pages/common/user-info.vue

6
im-uniapp/pages/common/user-info.vue

@ -36,10 +36,10 @@
</view>
</uni-card>
<bar-group>
<btn-bar v-show="isFriend" type="primary" title="发送消息" @click="onSendMessage()">
<btn-bar v-show="isFriend" type="primary" title="发送消息" @tap="onSendMessage()">
</btn-bar>
<btn-bar v-show="!isFriend" type="primary" title="加为好友" @click="onAddFriend()"></btn-bar>
<btn-bar v-show="isFriend" type="danger" title="删除好友" @click="onDelFriend()"></btn-bar>
<btn-bar v-show="!isFriend" type="primary" title="加为好友" @tap="onAddFriend()"></btn-bar>
<btn-bar v-show="isFriend" type="danger" title="删除好友" @tap="onDelFriend()"></btn-bar>
</bar-group>
</view>
</template>

Loading…
Cancel
Save