Commit 153756a2 authored by liwei's avatar liwei

修改了留言详情页面的样式问题

parent babd3039
...@@ -3,11 +3,15 @@ ...@@ -3,11 +3,15 @@
<!-- 页头 --> <!-- 页头 -->
<u-navbar @leftClick="backbar" bgColor="#F4F5F9" title="个人留言"></u-navbar> <u-navbar @leftClick="backbar" bgColor="#F4F5F9" title="个人留言"></u-navbar>
<view class="fixed-buttons" :style="{'top':navHeight+'px','position': 'relative'}"> <view class="fixed-buttons" :style="{'top':navHeight+'px','position': 'relative'}">
<view class="button-item" @click="addBlack">拉黑</view> <u-tabbar
<view class="vertical-line" style="width: 1px; height: 50rpx; background-color: #808080;"></view> :fixed="false"
<view class="button-item">要微信</view> :placeholder="false"
:safeAreaInsetBottom="false"
>
<u-tabbar-item text="拉黑" icon="close-circle-fill" @click="tabbarClick"/>
<u-tabbar-item text="要微信" icon="weixin-fill" @click="tabbarClick"/>
</u-tabbar>
</view> </view>
<view style="height: 80rpx;"></view>
<z-paging ref="paging" empty-view-text=" " <z-paging ref="paging" empty-view-text=" "
:empty-view-title-style="{ :empty-view-title-style="{
'font-size': '32rpx', 'font-size': '32rpx',
...@@ -110,6 +114,16 @@ export default { ...@@ -110,6 +114,16 @@ export default {
}) })
}, },
methods: { methods: {
tabbarClick(e){
if (e === 0){
//拉黑
this.addBlack()
}
if (e === 1){
//要微信
}
},
getLeaveMessageDict(){ getLeaveMessageDict(){
getDict('leave_message_config').then(res=> { getDict('leave_message_config').then(res=> {
this.leaveMessageOptions = res.data.data this.leaveMessageOptions = res.data.data
......
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