This commit is contained in:
THK3121 2023-09-13 16:06:18 +08:00
parent 3eb14f512f
commit d6ed529c56

View File

@ -202,7 +202,8 @@
<text>暂无评论快去抢沙发吧~</text> <text>暂无评论快去抢沙发吧~</text>
</view> </view>
<view v-if="followDetail.status == 1 && followDetail.relevance.length<=0" class="release_bar acea-row"> <view v-if="followDetail.status == 1 && followDetail.relevance.length<=0"
class="release_bar acea-row">
<view class="input_count" :class="{input_reply:content}"> <view class="input_count" :class="{input_reply:content}">
<form @submit="submitComment"> <form @submit="submitComment">
<input type="text" :placeholder="placeholder" <input type="text" :placeholder="placeholder"
@ -227,14 +228,15 @@
</view> </view>
</view> </view>
<view v-if="followDetail.status == 1&& followDetail.relevance.length>0" class="release_bar acea-row"> <view v-if="followDetail.status == 1&& followDetail.relevance.length>0"
class="release_bar acea-row">
<view class="shopp" @click="openMore(followDetail)" style="margin-top: 10rpx"> <view class="shopp" @click="openMore(followDetail)" style="margin-top: 10rpx">
<view class="shopp-img"> <view class="shopp-img">
<image src="@/static/images/shopp.png" mode=""></image> <image src="@/static/images/shopp.png" mode=""></image>
</view> </view>
<view class="shopp-txt"> <view class="shopp-txt">
商品 (2) 商品 ({{followDetail.relevance.length}})
</view> </view>
</view> </view>
@ -277,8 +279,13 @@
<view class="" style="background-color: #fff;height: 154rpx ;"> <view class="" style="background-color: #fff;height: 154rpx ;">
<view class="input_count1" :class="{input_reply:content}"> <view class="input_count1" :class="{input_reply:content}">
<form @submit="submitComment"> <form @submit="submitComment">
<input type="text" class="count1" :placeholder="placeholder" placeholder-style="color: #999999; font-size: 26rpx;" <view class="" style="display: flex;padding: 0 20rpx;box-sizing: border-box;">
v-model="content" :focus="focus" @confirm.stop="submitComment()" cursorSpacing={20}> <input type="text" class="count1" :placeholder="placeholder"
placeholder-style="color: #999999; font-size: 26rpx;" v-model="content" :focus="focus"
@confirm.stop="submitComment()" cursorSpacing={20}>
<button class="send1" @click.stop="submitComment">发送</button>
</view>
</form> </form>
</view> </view>
</view> </view>
@ -1280,6 +1287,7 @@
font-size: 32rpx; font-size: 32rpx;
} }
} }
.input_count1 { .input_count1 {
height: 70rpx; height: 70rpx;
@ -1297,6 +1305,7 @@
} }
} }
.release_bar { .release_bar {
align-items: center; align-items: center;
width: 100%; width: 100%;
@ -1403,4 +1412,18 @@
font-size: 26rpx; font-size: 26rpx;
} }
} }
.send1 {
font-size: 26rpx;
color: #ffffff;
// padding: 12rpx 45rpx;
background-image: linear-gradient(126deg, var(--view-bntColor21) 0%, var(--view-bntColor22) 100%);
border-radius: 30rpx;
text-align: center;
width: 150rpx;
line-height: 70rpx;
margin-left: 20rpx;
// height: ;
}
</style> </style>