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>
</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}">
<form @submit="submitComment">
<input type="text" :placeholder="placeholder"
@ -220,21 +221,22 @@
:class="followDetail.relevance_id ? 'icon-shoucang1' : 'icon-dianzan'"></text>
<text>{{followDetail.count_start}}</text>
</view>
<view class="item acea-row" @click="FToggle">
<view class="item acea-row" @click="FToggle">
<text class="iconfont icon-pinglun"></text>
<text>{{replyData.all}}</text>
</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-img">
<image src="@/static/images/shopp.png" mode=""></image>
</view>
<view class="shopp-txt">
商品 (2)
商品 ({{followDetail.relevance.length}})
</view>
</view>
@ -275,10 +277,15 @@
<uni-popup ref="bindmobile1" type="bottom">
<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">
<input type="text" class="count1" :placeholder="placeholder" placeholder-style="color: #999999; font-size: 26rpx;"
v-model="content" :focus="focus" @confirm.stop="submitComment()" cursorSpacing={20}>
<view class="" style="display: flex;padding: 0 20rpx;box-sizing: border-box;">
<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>
</view>
</view>
@ -400,7 +407,7 @@
},
FToggle() {
this.$refs.bindmobile1.open()
},
// 退
returns() {
@ -1280,28 +1287,30 @@
font-size: 32rpx;
}
}
.input_count1{
height: 70rpx;
padding-top: 15rpx;
/deep/.count1{
padding-left: 20rpx;
width: 617rpx;
.input_count1 {
height: 70rpx;
background: #F4F4F4;
margin: 0 auto;
border-radius: 35px 35px 35px 35px;
padding-top: 15rpx;
/deep/.count1 {
padding-left: 20rpx;
width: 617rpx;
height: 70rpx;
background: #F4F4F4;
margin: 0 auto;
border-radius: 35px 35px 35px 35px;
}
}
}
.release_bar {
align-items: center;
width: 100%;
background: #ffffff;
padding: 15rpx 20rpx;
position: fixed;
left: 0;
@ -1403,4 +1412,18 @@
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>