Fix:3011 【商城小程序】店铺主页发布动态中,简介输入字数超过140字时未弹出”字数超过限制“提示,且下方字数提示变化不正确

This commit is contained in:
modendeveloper
2025-01-22 01:48:10 +08:00
parent cab0577e03
commit 63526f4f06
+9
View File
@@ -29,6 +29,7 @@
maxlength="140"
placeholder-style="font-size:24rpx;color:#C2C5CC;"
class="content-style inp"
@input="inputIntro"
/>
<text class="v12-font-24 v12-dark1-text">{{ form.intro.length > 140 ? 140 : form.intro.length }} / 140</text>
</view>
@@ -117,6 +118,14 @@
this.hotelId = option.hotelId
},
methods: {
inputIntro() {
if(this.form.intro.length >= 140) {
uni.showToast({
title: '字数超过限制',
icon: 'none'
})
}
},
changeTab(index) {
this.tabIndex = index
this.showUpload = false